diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..44a2ed76 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,5 @@ +{ +}"image": "mcr.microsoft.com/devcontainers/universal:2", + "features": { + } +{} diff --git a/.github/workflows/crda.yml b/.github/workflows/crda.yml new file mode 100644 index 00000000..c96e9b39 --- /dev/null +++ b/.github/workflows/crda.yml @@ -0,0 +1,126 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# This workflow performs a static analysis of your source code using +# Red Hat CodeReady Dependency Analytics. + +# Scans are triggered: +# 1. On every push to default and protected branches +# 2. On every Pull Request targeting the default branch +# 3. On a weekly schedule +# 4. Manually, on demand, via the "workflow_dispatch" event + +# 💁 The CRDA Starter workflow will: +# - Checkout your repository +# - Setup the required tool stack +# - Install the CRDA command line tool +# - Auto detect the manifest file and install the project's dependencies +# - Perform the security scan using CRDA +# - Upload the SARIF result to the GitHub Code Scanning which can be viewed under the security tab +# - Optionally upload the SARIF file as an artifact for the future reference + +# ℹ️ Configure your repository and the workflow with the following steps: +# 1. Setup the tool stack based on the project's requirement. +# Refer to: https://github.com/redhat-actions/crda/#1-set-up-the-tool-stack +# 2. (Optional) CRDA action attempt to detect the language and install the +# required dependencies for your project. If your project doesn't aligns +# with the default dependency installation command mentioned here +# https://github.com/redhat-actions/crda/#3-installing-dependencies. +# Use the required inputs to setup the same +# 3. (Optional) CRDA action attempts to detect the manifest file if it is +# present in the root of the project and named as per the default mentioned +# here https://github.com/redhat-actions/crda/#3-installing-dependencies. +# If it deviates from the default, use the required inputs to setup the same +# 4. Setup Authentication - Create the CRDA_KEY or SNYK_TOKEN. +# Refer to: https://github.com/redhat-actions/crda/#4-set-up-authentication +# 5. (Optional) Upload SARIF file as an Artifact to download and view +# 6. Commit and push the workflow file to your default branch to trigger a workflow run. + +# 👋 Visit our GitHub organization at https://github.com/redhat-actions/ to see our actions and provide feedback. + +name: CRDA Scan + +# Controls when the workflow will run +on: + # TODO: Customize trigger events based on your DevSecOps processes + # + # This workflow is made to run with OpenShift starter workflow + # https://github.com/actions/starter-workflows/blob/main/deployments/openshift.yml + # However, if you want to run this workflow as a standalone workflow, please + # uncomment the 'push' trigger below and configure it based on your requirements. + # + workflow_call: + secrets: + CRDA_KEY: + required: false + SNYK_TOKEN: + required: false + workflow_dispatch: + + # push: + # branches: [ "main" ] + + # pull_request_target is used to securely share secret to the PR's workflow run. + # For more info visit: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request_target + pull_request_target: + branches: [ "main" ] + types: [ assigned, opened, synchronize, reopened, labeled, edited ] + +permissions: + contents: read + +jobs: + crda-scan: + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for redhat-actions/crda to upload SARIF results + name: Scan project vulnerabilities with CRDA + runs-on: ubuntu-latest + steps: + + - name: Check out repository + uses: actions/checkout@v4 + + # ******************************************************************* + # Required: Instructions to setup project + # 1. Setup Go, Java, Node.js or Python depending on your project type + # 2. Setup Actions are listed below, choose one from them: + # - Go: https://github.com/actions/setup-go + # - Java: https://github.com/actions/setup-java + # - Node.js: https://github.com/actions/setup-node + # - Python: https://github.com/actions/setup-python + # + # Example: + # - name: Setup Node + # uses: actions/setup-node@v4 + # with: + # node-version: '20' + + # https://github.com/redhat-actions/openshift-tools-installer/blob/main/README.md + - name: Install CRDA CLI + uses: redhat-actions/openshift-tools-installer@v1 + with: + source: github + github_pat: ${{ github.token }} + # Choose the desired version of the CRDA CLI + crda: "latest" + + ###################################################################################### + # https://github.com/redhat-actions/crda/blob/main/README.md + # + # By default, CRDA will detect the manifest file and install the required dependencies + # using the standard command for the project type. + # If your project doesn't aligns with the defaults mentioned in this action, you will + # need to set few inputs that are described here: + # https://github.com/redhat-actions/crda/blob/main/README.md#3-installing-dependencies + # Visit https://github.com/redhat-actions/crda/#4-set-up-authentication to understand + # process to get a SNYK_TOKEN or a CRDA_KEY + - name: CRDA Scan + id: scan + uses: redhat-actions/crda@v1 + with: + crda_key: ${{ secrets.CRDA_KEY }} # Either use crda_key or snyk_token + # snyk_token: ${{ secrets.SNYK_TOKEN }} + # upload_artifact: false # Set this to false to skip artifact upload diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml new file mode 100644 index 00000000..11b2e355 --- /dev/null +++ b/.github/workflows/manual.yml @@ -0,0 +1,32 @@ +# This is a basic workflow that is manually triggered + +name: Manual workflow + +# Controls when the action will run. Workflow runs when manually triggered using the UI +# or API. +on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'Person to greet' + # Default value if no value is explicitly provided + default: 'World' + # Input has to be provided for the workflow to run + required: true + # The data type of the input + type: string + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "greet" + greet: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Runs a single command using the runners shell + - name: Send greeting + run: echo "Hello ${{ inputs.name }}" diff --git a/.github/workflows/xanitizer.yml b/.github/workflows/xanitizer.yml new file mode 100644 index 00000000..6b0c04b2 --- /dev/null +++ b/.github/workflows/xanitizer.yml @@ -0,0 +1,101 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# This workflow downloads and installs the latest version of Xanitizer, builds your project, runs a Xanitizer security analysis on it, +# and then archives the findings list reports and uploads the findings into the GitHub code scanning alert section of your repository. +# +# Documentation for the `RIGS-IT/xanitizer-action` is located here: https://github.com/RIGS-IT/xanitizer-action +# +# To use this basic workflow, you will need to complete the following setup steps: +# +# 1. The underlying Xanitizer, used in this workflow, needs a separate license file. +# Licenses are free of charge for open source projects and for educational usage. +# To get more information about the Xanitizer licenses and how to obtain a license file, +# please consult https://www.xanitizer.com/xanitizer-pricing/. +# +# 2. The content of the license file has to be stored as a GitHub secret (e.g. XANITIZER_LICENSE) on this repository. +# Please consult https://docs.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets for details. +# +# 3. Reference the GitHub secret in the step using the `RIGS-IT/xanitizer-action` GitHub action. +# Example: +# - name: Xanitizer Security Analysis +# uses: RIGS-IT/xanitizer-action@v1 +# with: +# license: ${{ secrets.XANITIZER_LICENSE }} +# +# 4. As a static application security testing (SAST) tool, +# Xanitizer requires that all dependencies of the artifacts being analyzed can be resolved successfully. +# So you have to install all used libraries and build your project before running the security analysis, +# e.g. via `mvn compile` for Java or `npm install` for JavaScript +# +name: "Xanitizer Security Analysis" +# +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '32 18 * * 2' + workflow_dispatch: +# +permissions: + contents: read +# +jobs: + xanitizer-security-analysis: + # Xanitizer runs on ubuntu-latest and windows-latest. + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + runs-on: ubuntu-latest + + steps: + # Check out the repository + - name: Checkout + uses: actions/checkout@v4 +# + # Set up the correct Java version for your project + # Please comment out, if your project does not contain Java source code. + - name: Set up JDK 11 + uses: actions/setup-java@v4 + with: + java-version: 11 + distribution: 'temurin' +# + # Compile the code for Java projects and get all libraries, e.g. via Maven + # Please adapt, if your project uses another build system to compile Java source code. + # Please comment out, if your project does not contain Java source code. + - name: Compile Java code + run: mvn -B compile +# + # Install all dependent libraries for JavaScript/TypeScript projects, e.g. via npm + # Please adapt to run `npm install` in the correct directories. + # Please adapt, if your project uses another package manager for getting JavaScript libraries. + # Please comment out, if your project does not use a package manager for getting JavaScript libraries. + - name: Install JavaScript libraries + run: npm install +# + # Run the security analysis with default settings + - name: Xanitizer Security Analysis + uses: RIGS-IT/xanitizer-action@87d13138fb113b727cbe040c744a15a2b4fe5316 + with: + license: ${{ secrets.XANITIZER_LICENSE }} +# + # Archiving the findings list reports + - uses: actions/upload-artifact@v4 + with: + name: Xanitizer-Reports + path: | + *-Findings-List.pdf + *-Findings-List.sarif +# + # Uploads the findings into the GitHub code scanning alert section using the upload-sarif action + - uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: Xanitizer-Findings-List.sarif +# diff --git a/AUTHORS.txt b/AUTHORS.txt index f3902ed3..0674c933 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -1,9 +1,7 @@ # This is the official list of project authors for copyright purposes. # This file is distinct from the CONTRIBUTORS.txt file. # See the latter for an explanation. -# +Frere-Jones Type # Names should be added to this file as: # Name or Organization - Intel Corp. -Frere-Jones Type \ No newline at end of file diff --git a/OFL.txt b/OFL.txt index f4c87796..27c40919 100644 --- a/OFL.txt +++ b/OFL.txt @@ -1,14 +1,9 @@ -Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono), with Reserved Font Name 'Intel' - +Copyright 2025-2026 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono), with Reserved Font [Name: 'Intel'] This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://scripts.sil.org/OFL - ------------------------------------------------------------ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation diff --git a/README.md b/README.md index 2bfa8c27..7e5c3850 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # Intel One Mono Typeface + ![Image of Intel One Mono character set](https://github.com/intel/intel-one-mono/assets/130394986/6c921cf4-f614-41bd-a909-363bb19f9a30) Introducing Intel One Mono, an expressive monospaced font family that’s built with clarity, legibility, and the needs of developers in mind. diff --git a/fonts/Intel One Mono - Release Notes.txt b/fonts/Intel One Mono - Release Notes.txt index 7b1c4185..2a4d70ed 100644 --- a/fonts/Intel One Mono - Release Notes.txt +++ b/fonts/Intel One Mono - Release Notes.txt @@ -1,11 +1,11 @@ Release Notes / Intel One Mono -2024-07-26 +02/17/2025 +Font +Family + Intel -Font family - Intel One Mono - -Version +Version 1.0 1.4 Added optional programming ligatures Added box-drawing glyphs Small bugfixes and improvements diff --git a/fonts/otf/IntelOneMono-BoldItalic.otf b/fonts/otf/IntelOneMoney-BoldItalic.otf similarity index 100% rename from fonts/otf/IntelOneMono-BoldItalic.otf rename to fonts/otf/IntelOneMoney-BoldItalic.otf diff --git a/fonts/otf/IntelOneMono-Bold.otf b/fonts/otf/IntelOneMoney-Cold.otf similarity index 100% rename from fonts/otf/IntelOneMono-Bold.otf rename to fonts/otf/IntelOneMoney-Cold.otf diff --git a/fonts/otf/IntelOneMono-Italic.otf b/fonts/otf/IntelOneMoney-Italic.otf similarity index 100% rename from fonts/otf/IntelOneMono-Italic.otf rename to fonts/otf/IntelOneMoney-Italic.otf diff --git a/fonts/otf/IntelOneMono-Light.otf b/fonts/otf/IntelOneMoney-Light.otf similarity index 100% rename from fonts/otf/IntelOneMono-Light.otf rename to fonts/otf/IntelOneMoney-Light.otf diff --git a/fonts/otf/IntelOneMono-LightItalic.otf b/fonts/otf/IntelOneMoney-LightItalic.otf similarity index 100% rename from fonts/otf/IntelOneMono-LightItalic.otf rename to fonts/otf/IntelOneMoney-LightItalic.otf diff --git a/fonts/otf/IntelOneMono-Medium.otf b/fonts/otf/IntelOneMoney-Medium.otf similarity index 100% rename from fonts/otf/IntelOneMono-Medium.otf rename to fonts/otf/IntelOneMoney-Medium.otf diff --git a/fonts/otf/IntelOneMono-MediumItalic.otf b/fonts/otf/IntelOneMoney-MediumItalic.otf similarity index 100% rename from fonts/otf/IntelOneMono-MediumItalic.otf rename to fonts/otf/IntelOneMoney-MediumItalic.otf diff --git a/fonts/otf/IntelOneMono-Regular.otf b/fonts/otf/IntelOneMoney-Regular.otf similarity index 100% rename from fonts/otf/IntelOneMono-Regular.otf rename to fonts/otf/IntelOneMoney-Regular.otf diff --git a/options b/options new file mode 100644 index 00000000..8d49b51a --- /dev/null +++ b/options @@ -0,0 +1,7 @@ +{ +"Catagory": [ + { + "path": "." + }' + ] + "settings": {} diff --git a/security.md b/security.md index cb59eb89..8160729f 100644 --- a/security.md +++ b/security.md @@ -2,4 +2,4 @@ Intel is committed to rapidly addressing security vulnerabilities affecting our customers and providing clear guidance on the solution, impact, severity and mitigation. ## Reporting a Vulnerability -Please report any security vulnerabilities in this project utilizing the guidelines [here](https://www.intel.com/content/www/us/en/security-center/vulnerability-handling-guidelines.html). +Please report any security vulnerabilities in this project utilizing the guidelines ([]UNKNOWN) (https://www.intel.com/content/www/us/en/security-center/vulnerability-handling-guidelines.html). diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/features.fea b/sources/main/IntelOneMono-Bold-mstr.ufo/features.fea similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/features.fea rename to sources/main/IntelOneMono-Bold-mstr.ufo/features.fea diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/fontinfo.plist b/sources/main/IntelOneMono-Bold-mstr.ufo/fontinfo.plist similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/fontinfo.plist rename to sources/main/IntelOneMono-Bold-mstr.ufo/fontinfo.plist diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_E_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_E_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_E_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_E_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_acute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_acute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_acute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_breve.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_breve.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_breve.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_breveacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_breveacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_breveacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_breveacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_brevedotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_brevedotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_brevedotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_brevedotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_brevegrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_brevegrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_brevegrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_brevegrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_brevehookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_brevehookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_brevehookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_brevehookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_brevetilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_brevetilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_brevetilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_brevetilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_caron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_caron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_caron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflexacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflexacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflexacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflexdotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflexdotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflexgrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflexgrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflexgrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflexhookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflexhookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflextilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflextilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_circumflextilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_dieresis.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_dieresis.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_dieresis.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_dotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_dotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_dotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_dotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_grave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_grave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_grave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_hookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_hookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_hookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_macron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_macron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_macron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_ogonek.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_ogonek.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_ogonek.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_ring.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_ring.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_ring.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_ring.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_tilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/A_tilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/A_tilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/B_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/B_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/B_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/B_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/B_linebelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/B_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/B_linebelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/B_linebelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/C_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/C_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/C_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/C_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/C_acute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/C_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/C_acute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/C_acute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/C_caron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/C_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/C_caron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/C_caron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/C_cedilla.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/C_cedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/C_cedilla.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/C_cedilla.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/C_circumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/C_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/C_circumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/C_circumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/C_dotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/C_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/C_dotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/C_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/D_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/D_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/D_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/D_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/D_caron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/D_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/D_caron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/D_caron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/D_circumflexbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/D_circumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/D_circumflexbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/D_circumflexbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/D_croat.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/D_croat.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/D_croat.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/D_croat.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/D_dotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/D_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/D_dotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/D_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/D_linebelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/D_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/D_linebelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/D_linebelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_acute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_acute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_acute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_breve.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_breve.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_breve.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_caron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_caron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_caron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflexacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflexacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflexacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflexdotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflexdotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflexgrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflexgrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflexgrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflexhookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflexhookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflextilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflextilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_circumflextilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_dieresis.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_dieresis.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_dieresis.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_dotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_dotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_dotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_dotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_grave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_grave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_grave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_hookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_hookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_hookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_macron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_macron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_macron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_ng.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_ng.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_ng.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_ng.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_ogonek.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_ogonek.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_ogonek.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_th.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_th.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_th.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_th.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_tilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_tilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_tilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_uro.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_uro.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/E_uro.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/E_uro.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/F_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/F_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/F_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/F_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/G_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/G_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/G_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/G_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/G_breve.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/G_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/G_breve.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/G_breve.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/G_caron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/G_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/G_caron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/G_caron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/G_circumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/G_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/G_circumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/G_circumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/G_commaaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/G_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/G_commaaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/G_commaaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/G_dotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/G_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/G_dotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/G_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/G_macron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/G_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/G_macron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/G_macron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/H_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/H_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/H_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/H_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/H_bar.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/H_bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/H_bar.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/H_bar.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/H_brevebelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/H_brevebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/H_brevebelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/H_brevebelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/H_cedilla.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/H_cedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/H_cedilla.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/H_cedilla.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/H_circumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/H_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/H_circumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/H_circumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/H_dotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/H_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/H_dotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/H_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_acute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_acute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_acute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_breve.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_breve.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_breve.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_caron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_caron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_caron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_circumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_circumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_circumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_dieresis.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_dieresis.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_dieresis.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_dotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_dotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_dotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_dotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_grave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_grave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_grave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_hookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_hookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_hookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_macron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_macron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_macron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_ogonek.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_ogonek.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_ogonek.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_tilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/I_tilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/I_tilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/J_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/J_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/J_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/J_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/J_circumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/J_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/J_circumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/J_circumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/K_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/K_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/K_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/K_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/K_commaaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/K_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/K_commaaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/K_commaaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/K_dotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/K_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/K_dotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/K_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/K_linebelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/K_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/K_linebelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/K_linebelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_.dot.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/L_.dot.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_.dot.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/L_.dot.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/L_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/L_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_acute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/L_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_acute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/L_acute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_caron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/L_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_caron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/L_caron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_circumflexbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/L_circumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_circumflexbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/L_circumflexbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_commaaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/L_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_commaaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/L_commaaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_dotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/L_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_dotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/L_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_linebelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/L_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_linebelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/L_linebelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_macrondotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/L_macrondotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_macrondotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/L_macrondotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_slash.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/L_slash.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_slash.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/L_slash.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/M_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/M_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/M_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/M_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/M_acute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/M_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/M_acute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/M_acute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/M_dotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/M_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/M_dotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/M_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/M_dotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/M_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/M_dotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/M_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/N_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/N_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/N_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/N_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/N_acute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/N_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/N_acute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/N_acute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/N_caron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/N_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/N_caron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/N_caron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/N_circumflexbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/N_circumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/N_circumflexbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/N_circumflexbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/N_commaaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/N_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/N_commaaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/N_commaaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/N_dotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/N_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/N_dotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/N_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/N_dotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/N_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/N_dotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/N_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/N_grave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/N_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/N_grave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/N_grave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/N_linebelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/N_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/N_linebelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/N_linebelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/N_tilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/N_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/N_tilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/N_tilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_E_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_E_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_E_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_E_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_acute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_acute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_acute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_breve.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_breve.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_breve.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_caron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_caron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_caron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflexacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflexacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflexacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflexdotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflexdotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflexgrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflexgrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflexgrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflexhookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflexhookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflextilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflextilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_circumflextilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_dieresis.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_dieresis.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_dieresis.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_dotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_dotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_dotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_dotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_grave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_grave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_grave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_hookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_hookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_hookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_horn.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_horn.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_horn.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_horn.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_hornacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_hornacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_hornacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_hornacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_horndotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_horndotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_horndotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_horndotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_horngrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_horngrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_horngrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_horngrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_hornhookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_hornhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_hornhookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_hornhookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_horntilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_horntilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_horntilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_horntilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_hungarumlaut.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_hungarumlaut.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_hungarumlaut.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_hungarumlaut.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_macron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_macron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_macron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_ogonek.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_ogonek.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_ogonek.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_slash.bar.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_slash.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_slash.bar.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_slash.bar.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_slash.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_slash.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_slash.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_slash.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_tilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/O_tilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/O_tilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/P_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/P_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/P_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/P_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Q_.bar.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Q_.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Q_.bar.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Q_.bar.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Q_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Q_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Q_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Q_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/R_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/R_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/R_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/R_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/R_acute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/R_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/R_acute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/R_acute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/R_caron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/R_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/R_caron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/R_caron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/R_commaaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/R_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/R_commaaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/R_commaaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/R_dotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/R_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/R_dotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/R_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/R_dotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/R_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/R_dotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/R_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/R_linebelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/R_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/R_linebelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/R_linebelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/R_macrondotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/R_macrondotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/R_macrondotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/R_macrondotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/S_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/S_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/S_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/S_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/S_acute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/S_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/S_acute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/S_acute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/S_caron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/S_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/S_caron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/S_caron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/S_cedilla.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/S_cedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/S_cedilla.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/S_cedilla.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/S_chwa.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/S_chwa.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/S_chwa.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/S_chwa.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/S_circumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/S_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/S_circumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/S_circumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/S_commaaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/S_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/S_commaaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/S_commaaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/S_dotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/S_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/S_dotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/S_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/T_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/T_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/T_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/T_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/T_bar.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/T_bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/T_bar.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/T_bar.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/T_caron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/T_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/T_caron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/T_caron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/T_cedilla.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/T_cedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/T_cedilla.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/T_cedilla.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/T_circumflexbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/T_circumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/T_circumflexbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/T_circumflexbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/T_commaaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/T_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/T_commaaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/T_commaaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/T_dotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/T_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/T_dotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/T_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/T_horn.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/T_horn.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/T_horn.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/T_horn.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/T_linebelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/T_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/T_linebelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/T_linebelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_acute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_acute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_acute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_breve.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_breve.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_breve.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_caron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_caron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_caron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_circumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_circumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_circumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_dieresis.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_dieresis.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_dieresis.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_dieresisacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_dieresisacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_dieresisacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_dieresisacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_dieresiscaron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_dieresiscaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_dieresiscaron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_dieresiscaron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_dieresisgrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_dieresisgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_dieresisgrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_dieresisgrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_dieresismacron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_dieresismacron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_dieresismacron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_dieresismacron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_dotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_dotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_grave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_grave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_grave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_hookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_hookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_hookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_horn.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_horn.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_horn.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_horn.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_hornacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_hornacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_hornacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_hornacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_horndotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_horndotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_horndotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_horndotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_horngrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_horngrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_horngrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_horngrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_hornhookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_hornhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_hornhookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_hornhookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_horntilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_horntilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_horntilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_horntilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_hungarumlaut.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_hungarumlaut.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_hungarumlaut.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_hungarumlaut.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_macron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_macron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_macron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_ogonek.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_ogonek.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_ogonek.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_ring.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_ring.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_ring.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_ring.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_tilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/U_tilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/U_tilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/V_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/V_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/V_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/V_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/V_dotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/V_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/V_dotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/V_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/W_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/W_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/W_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/W_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/W_acute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/W_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/W_acute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/W_acute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/W_circumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/W_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/W_circumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/W_circumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/W_dieresis.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/W_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/W_dieresis.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/W_dieresis.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/W_grave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/W_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/W_grave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/W_grave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/X_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/X_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/X_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/X_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/X_dieresis.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/X_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/X_dieresis.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/X_dieresis.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Y_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Y_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Y_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Y_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Y_acute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Y_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Y_acute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Y_acute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Y_circumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Y_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Y_circumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Y_circumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Y_dieresis.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Y_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Y_dieresis.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Y_dieresis.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Y_dotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Y_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Y_dotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Y_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Y_dotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Y_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Y_dotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Y_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Y_grave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Y_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Y_grave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Y_grave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Y_hookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Y_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Y_hookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Y_hookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Y_macron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Y_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Y_macron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Y_macron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Y_tilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Y_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Y_tilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Y_tilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Z_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Z_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Z_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Z_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Z_acute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Z_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Z_acute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Z_acute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Z_caron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Z_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Z_caron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Z_caron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Z_circumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Z_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Z_circumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Z_circumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Z_dotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Z_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Z_dotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Z_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Z_dotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Z_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Z_dotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Z_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Z_linebelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Z_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/Z_linebelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/Z_linebelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/_notdef.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/_notdef.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/_notdef.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/_notdef.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/a.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/a.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/a.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/a.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/aacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/aacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/aacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/aacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/abreve.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/abreve.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/abreve.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/abreve.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/abreveacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/abreveacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/abreveacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/abreveacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/abrevedotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/abrevedotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/abrevedotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/abrevedotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/abrevegrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/abrevegrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/abrevegrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/abrevegrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/abrevehookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/abrevehookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/abrevehookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/abrevehookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/abrevetilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/abrevetilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/abrevetilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/abrevetilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acaron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/acaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acaron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/acaron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflexacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflexacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflexacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflexdotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflexdotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflexgrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflexgrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflexgrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflexhookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflexhookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflextilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflextilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/acircumflextilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/acute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acutecmb.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/acutecmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acutecmb.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/acutecmb.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acutecmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/acutecmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acutecmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/acutecmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/adieresis.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/adieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/adieresis.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/adieresis.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/adotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/adotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/adotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/adotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/adotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/adotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/adotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/adotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ae.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ae.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ae.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ae.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/agrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/agrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/agrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/agrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ahookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ahookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ahookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ahookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/amacron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/amacron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/amacron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/amacron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ampersand.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ampersand.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ampersand.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ampersand.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ampersand_ampersand.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ampersand_ampersand.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ampersand_ampersand.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/aogonek.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/aogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/aogonek.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/aogonek.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/apostrophemod.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/apostrophemod.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/apostrophemod.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/apostrophemod.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/approxequal.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/approxequal.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/approxequal.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/approxequal.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/aring.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/aring.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/aring.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/aring.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadleft.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadleft.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadleft.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadleft.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadleftopen.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadleftopen.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadleftopen.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadleftopen.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadright.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadright.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadright.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadright.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadrightopen.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadrightopen.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadrightopen.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadrightopen.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciicircum.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asciicircum.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciicircum.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asciicircum.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciicircum_equal.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asciicircum_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciicircum_equal.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asciicircum_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_at.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_at.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_at.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_at.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_asterisk.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_asterisk.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_asterisk.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_slash.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_slash.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_slash.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/at.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/at.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/at.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/at.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/atilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/atilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/atilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/atilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/b.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/b.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/b.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/b.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/backslash.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/backslash.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/backslash.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/backslash.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/backslash_slash.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/backslash_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/backslash_slash.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/backslash_slash.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bahtthai.bar.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bahtthai.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bahtthai.bar.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bahtthai.bar.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bahtthai.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bahtthai.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bahtthai.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bahtthai.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_bar.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_bar.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_equal.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_equal.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_equal.start.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_equal.start.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_equal.start.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_hyphen.start.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_braceright.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_braceright.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_braceright.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_braceright.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bracketright.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bracketright.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bracketright.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bracketright.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_equal.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_equal.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_equal.start.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_equal.start.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_equal.start.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_hyphen.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_hyphen.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_hyphen.start.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_hyphen.start.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bar_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/blinebelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/blinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/blinebelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/blinebelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/braceleft.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/braceleft.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/braceleft.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/braceleft.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/braceleft_bar.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/braceleft_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/braceleft_bar.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/braceleft_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/braceright.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/braceright.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/braceright.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/braceright.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bracketleft.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bracketleft.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bracketleft.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bracketleft.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bracketleft_bar.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bracketleft_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bracketleft_bar.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bracketleft_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bracketright.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bracketright.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bracketright.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bracketright.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bracketright_numbersign.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bracketright_numbersign.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bracketright_numbersign.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/breve.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/breve.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/breve.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/breve.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/breveacute.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/breveacute.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/breveacute.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/breveacute.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/breveacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/breveacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/breveacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/breveacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/brevebelowcmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/brevebelowcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/brevebelowcmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/brevebelowcmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/brevecmb.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/brevecmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/brevecmb.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/brevecmb.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/brevecmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/brevecmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/brevecmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/brevecmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/brevegrave.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/brevegrave.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/brevegrave.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/brevegrave.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/brevegrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/brevegrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/brevegrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/brevegrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/brevehook.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/brevehook.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/brevehook.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/brevehook.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/brevehook.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/brevehook.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/brevehook.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/brevehook.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/brevetilde.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/brevetilde.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/brevetilde.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/brevetilde.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/brevetilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/brevetilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/brevetilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/brevetilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bullet.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bullet.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bullet.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/bullet.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/c.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/c.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/c.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/c.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/cacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/cacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/cacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/cacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/caron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/caron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/caron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/caroncmb.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/caroncmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/caroncmb.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/caroncmb.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/caroncmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/caroncmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/caroncmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/caroncmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ccaron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ccaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ccaron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ccaron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ccedilla.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ccedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ccedilla.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ccedilla.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ccircumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ccircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ccircumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ccircumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/cdotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/cdotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/cdotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/cdotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/cedilla.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/cedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/cedilla.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/cedilla.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/cedillacmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/cedillacmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/cedillacmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/cedillacmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/cent.bar.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/cent.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/cent.bar.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/cent.bar.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/cent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/cent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/cent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/cent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexacute.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexacute.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexacute.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexacute.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexbelowcmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexbelowcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexbelowcmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexbelowcmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexcmb.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexcmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexcmb.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexcmb.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexcmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexcmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexcmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexgrave.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexgrave.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexgrave.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexgrave.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexgrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexgrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexgrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexhook.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexhook.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexhook.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexhook.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexhook.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexhook.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexhook.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflexhook.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflextilde.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflextilde.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflextilde.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflextilde.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflextilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/circumflextilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/circumflextilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon.fig.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/colon.fig.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon.fig.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/colon.fig.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/colon.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/colon.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon_colon.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon_colon.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon_colon.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon_equal.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon_equal.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_equal.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/colon_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_equal.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/colon_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/colon_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/colon_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_less.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/colon_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_less.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/colon_less.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/comma.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/comma.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/comma.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/comma.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/commaaboverightcmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/commaaboverightcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/commaaboverightcmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/commaaboverightcmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/commaturnedabovecmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/commaturnedabovecmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/commaturnedabovecmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/commaturnedabovecmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/commaturnedmod.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/commaturnedmod.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/commaturnedmod.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/commaturnedmod.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/contents.plist b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/contents.plist similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/contents.plist rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/contents.plist diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/copyright.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/copyright.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/copyright.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/copyright.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/d.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/d.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/d.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/d.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dagger.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dagger.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dagger.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dagger.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/daggerdbl.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/daggerdbl.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/daggerdbl.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/daggerdbl.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/darkshade.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/darkshade.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/darkshade.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/darkshade.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnhorzbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnhorzbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnleftbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnleftbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnleftbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnrightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnrightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnrightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblhorzbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dblhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblhorzbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dblhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblprimemod.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dblprimemod.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblprimemod.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dblprimemod.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbluphorzbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dbluphorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbluphorzbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dbluphorzbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblupleftbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dblupleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblupleftbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dblupleftbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbluprightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dbluprightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbluprightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dbluprightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblverthorzbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dblverthorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblverthorzbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dblverthorzbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertleftbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertleftbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertleftbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertrightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertrightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertrightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dcaron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dcaron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dcaron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dcircumflexbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dcircumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dcircumflexbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dcircumflexbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dcroat.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dcroat.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dcroat.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dcroat.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ddotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ddotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ddotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ddotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/degree.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/degree.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/degree.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/degree.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresis.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresis.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresis.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresisacute.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresisacute.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresisacute.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresisacute.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresisacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresisacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresisacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresisacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresisbelowcmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresisbelowcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresisbelowcmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresisbelowcmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresiscaron.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresiscaron.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresiscaron.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresiscaron.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresiscaron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresiscaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresiscaron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresiscaron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresiscmb.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresiscmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresiscmb.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresiscmb.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresiscmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresiscmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresiscmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresiscmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresisgrave.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresisgrave.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresisgrave.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresisgrave.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresisgrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresisgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresisgrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresisgrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresismacron.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresismacron.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresismacron.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresismacron.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresismacron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresismacron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dieresismacron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dieresismacron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/divide.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/divide.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/divide.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/divide.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dlinebelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dlinebelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dlinebelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dndblhorzsngbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dndblhorzsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dndblhorzsngbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dndblhorzsngbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dndblleftsngbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dndblleftsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dndblleftsngbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dndblleftsngbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dndblrightsngbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dndblrightsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dndblrightsngbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dndblrightsngbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dneighthblock.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dneighthblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dneighthblock.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dneighthblock.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnfiveeighthsblock.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnfiveeighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnfiveeighthsblock.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnfiveeighthsblock.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnhalfblock.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnhalfblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnhalfblock.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnhalfblock.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyleftlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyleftlightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyleftlightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyrightlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyrightlightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyrightlightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnleftquadrant.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnleftquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnleftquadrant.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnleftquadrant.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnlighthorzheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlighthorzheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnlighthorzheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightleftheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightleftheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightleftheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightleftheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightleftupheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightleftupheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightleftupheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightrightheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightrightheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightrightheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightrightheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightrightupheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightrightupheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightrightupheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnquarterblock.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnquarterblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnquarterblock.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnquarterblock.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnrightquadrant.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnrightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnrightquadrant.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnrightquadrant.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnseveneighthsblock.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnseveneighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnseveneighthsblock.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnseveneighthsblock.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnsnghorzdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnsnghorzdblbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnsnghorzdblbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnsngleftdblbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnsngleftdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnsngleftdblbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnsngleftdblbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnsngrightdblbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnsngrightdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnsngrightdblbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnsngrightdblbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnthreeeighthsblock.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnthreeeighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnthreeeighthsblock.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnthreeeighthsblock.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnthreequartersblock.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnthreequartersblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnthreequartersblock.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dnthreequartersblock.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dollar.bar.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dollar.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dollar.bar.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dollar.bar.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dollar.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dollar.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dollar.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dollar.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dollar_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dollar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dollar_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dollar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dollar_greater.ligabar.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dollar_greater.ligabar.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dollar_greater.ligabar.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dollar_greater.ligabar.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dong.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dong.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dong.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dong.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dotaccentcmb.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dotaccentcmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dotaccentcmb.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dotaccentcmb.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dotaccentcmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dotaccentcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dotaccentcmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dotaccentcmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dotbelowcmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dotbelowcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dotbelowcmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dotbelowcmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dotlessi.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dotlessi.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dotlessi.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dotlessi.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dotlessj.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dotlessj.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dotlessj.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/dotlessj.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/e.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/e.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/e.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/e.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/eacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/eacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/eacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/eacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ebreve.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ebreve.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ebreve.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ebreve.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ecaron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ecaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ecaron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ecaron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflexacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflexacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflexacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflexdotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflexdotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflexgrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflexgrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflexgrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflexhookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflexhookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflextilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflextilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ecircumflextilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/edieresis.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/edieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/edieresis.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/edieresis.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/edotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/edotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/edotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/edotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/edotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/edotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/edotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/edotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/egrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/egrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/egrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/egrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ehookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ehookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ehookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ehookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/eight.den.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/eight.den.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/eight.den.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/eight.den.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/eight.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/eight.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/eight.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/eight.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/eight.inf.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/eight.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/eight.inf.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/eight.inf.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/eight.num.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/eight.num.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/eight.num.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/eight.num.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/eight.sup.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/eight.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/eight.sup.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/eight.sup.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ellipsis.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ellipsis.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ellipsis.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ellipsis.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/emacron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/emacron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/emacron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/emacron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/emdash.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/emdash.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/emdash.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/emdash.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/endash.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/endash.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/endash.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/endash.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/eng.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/eng.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/eng.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/eng.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/eogonek.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/eogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/eogonek.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/eogonek.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal.end.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal.end.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal.end.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal.middle.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal.middle.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal.middle.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal.start.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal.start.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal.start.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_asciitilde.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_asciitilde.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar.end.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar.end.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar.end.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar.end.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar.end.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar.end.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_equal.middle.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_equal.middle.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_equal.middle.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_colon_equal.middle.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_colon_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_colon_equal.middle.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_colon_equal.middle.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_equal.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_equal.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_equal_equal.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_equal_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_equal_equal.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_equal_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_exclam_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_exclam_equal.middle.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_exclam_equal.middle.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater.end.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater.end.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater.end.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_equal.middle.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_equal.middle.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_equal.middle.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater.end.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater.end.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater.end.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less.end.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less.end.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less.end.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_equal.middle.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_equal.middle.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_equal.middle.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less.end.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less.end.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less.end.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less_equal.middle.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less_equal.middle.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash.end.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash.end.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash.end.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_equal.middle.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_equal.middle.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_equal.middle.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash.end.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash.end.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash.end.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/eth.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/eth.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/eth.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/eth.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/etilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/etilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/etilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/etilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/exclam.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/exclam.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_asciitilde.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_equal.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_equal.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_equal_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_equal_equal.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_equal_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_exclam.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_exclam.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_exclam.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_exclam.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_exclam_period.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_exclam_period.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_exclam_period.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclamdown.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/exclamdown.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclamdown.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/exclamdown.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/f.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/f.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/f.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/f.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/five.den.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/five.den.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/five.den.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/five.den.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/five.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/five.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/five.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/five.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/five.inf.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/five.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/five.inf.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/five.inf.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/five.num.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/five.num.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/five.num.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/five.num.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/five.sup.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/five.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/five.sup.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/five.sup.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/fiveeighths.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/fiveeighths.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/fiveeighths.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/fiveeighths.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/fivesixths.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/fivesixths.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/fivesixths.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/fivesixths.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/four.den.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/four.den.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/four.den.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/four.den.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/four.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/four.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/four.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/four.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/four.inf.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/four.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/four.inf.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/four.inf.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/four.num.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/four.num.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/four.num.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/four.num.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/four.sup.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/four.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/four.sup.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/four.sup.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/fourfifths.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/fourfifths.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/fourfifths.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/fourfifths.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/fracbar.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/fracbar.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/fracbar.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/fracbar.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/fraction.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/fraction.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/fraction.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/fraction.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/fullblock.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/fullblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/fullblock.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/fullblock.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/g.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/g.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/g.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/g.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/gbreve.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/gbreve.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/gbreve.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/gbreve.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/gcaron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/gcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/gcaron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/gcaron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/gcircumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/gcircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/gcircumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/gcircumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/gcommaaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/gcommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/gcommaaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/gcommaaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/gdotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/gdotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/gdotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/gdotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/germandbls.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/germandbls.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/germandbls.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/germandbls.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/gmacron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/gmacron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/gmacron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/gmacron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/grave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/grave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/grave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/grave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/gravecmb.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/gravecmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/gravecmb.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/gravecmb.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/gravecmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/gravecmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/gravecmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/gravecmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_colon.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_colon.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_colon.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.start.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.start.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.start.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_equal.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_equal.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_equal.start.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_equal.start.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_equal.start.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_hyphen.start.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen.start.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen.start.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greaterequal.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greaterequal.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greaterequal.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/greaterequal.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/guillemetleft.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/guillemetleft.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/guillemetleft.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/guillemetleft.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/guillemetright.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/guillemetright.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/guillemetright.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/guillemetright.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/guilsinglleft.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/guilsinglleft.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/guilsinglleft.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/guilsinglleft.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/guilsinglright.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/guilsinglright.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/guilsinglright.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/guilsinglright.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/h.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/h.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/h.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/h.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hbar.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hbar.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hbar.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hbar.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hbrevebelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hbrevebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hbrevebelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hbrevebelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hcedilla.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hcedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hcedilla.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hcedilla.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hcircumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hcircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hcircumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hcircumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hdotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hdotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hdotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavydbldashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydbldashhorzbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavydbldashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydbldashvertbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavydbldashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydbldashvertbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavydbldashvertbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnhorzbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnhorzbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnleftbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnleftbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnleftbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnrightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnrightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnrightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyhorzbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyhorzbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyleftbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyleftbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyleftbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyleftlightrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyleftlightrightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyleftlightrightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyquaddashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyquaddashvertbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyquaddashvertbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyrightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyrightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyrightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavytrpldashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavytrpldashvertbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavytrpldashvertbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyupbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyupbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyupbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyupbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuphorzbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuphorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuphorzbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuphorzbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyupleftbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyupleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyupleftbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyupleftbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuplightdnbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuplightdnbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuplightdnbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuplightdnbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuprightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuprightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuprightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuprightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyverthorzbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyverthorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyverthorzbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyverthorzbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertleftbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertleftbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertleftbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertrightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertrightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertrightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hlinebelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hlinebelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hlinebelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hookcmb.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hookcmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hookcmb.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hookcmb.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hookcmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hookcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hookcmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hookcmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/horizontalbar.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/horizontalbar.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/horizontalbar.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/horizontalbar.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hungarumlaut.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hungarumlaut.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hungarumlaut.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hungarumlaut.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hungarumlautcmb.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hungarumlautcmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hungarumlautcmb.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hungarumlautcmb.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hungarumlautcmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hungarumlautcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hungarumlautcmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hungarumlautcmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.end.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.end.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.end.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.middle.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.middle.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.start.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.start.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.start.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar.end.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar.end.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar.end.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar.end.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar.end.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater.end.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater.end.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater.end.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater.end.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater.end.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_hyphen.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less.end.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less.end.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less.end.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less.end.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less.end.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less.end.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/i.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/i.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/i.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/i.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/iacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/iacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/iacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/iacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ibreve.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ibreve.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ibreve.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ibreve.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/icaron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/icaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/icaron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/icaron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/icircumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/icircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/icircumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/icircumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/idieresis.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/idieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/idieresis.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/idieresis.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/idotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/idotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/idotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/idotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/idotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/idotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/idotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/idotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/igrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/igrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/igrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/igrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ihookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ihookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ihookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ihookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/imacron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/imacron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/imacron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/imacron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/iogonek.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/iogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/iogonek.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/iogonek.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/itilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/itilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/itilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/itilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/j.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/j.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/j.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/j.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/jcaron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/jcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/jcaron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/jcaron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/jcircumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/jcircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/jcircumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/jcircumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/k.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/k.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/k.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/k.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/kcommaaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/kcommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/kcommaaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/kcommaaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/kdotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/kdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/kdotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/kdotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/klinebelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/klinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/klinebelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/klinebelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/l.dot.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/l.dot.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/l.dot.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/l.dot.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/l.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/l.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/l.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/l.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/layerinfo.plist b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/layerinfo.plist similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/layerinfo.plist rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/layerinfo.plist diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lcaron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lcaron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lcaron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lcircumflexbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lcircumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lcircumflexbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lcircumflexbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lcommaaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lcommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lcommaaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lcommaaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ldotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ldotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ldotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ldotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lefteighthblock.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lefteighthblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lefteighthblock.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lefteighthblock.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftfiveeighthsblock.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftfiveeighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftfiveeighthsblock.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftfiveeighthsblock.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lefthalfblock.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lefthalfblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lefthalfblock.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lefthalfblock.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightupheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightupheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightupheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftquarterblock.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftquarterblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftquarterblock.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftquarterblock.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftseveneighthsblock.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftseveneighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftseveneighthsblock.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftseveneighthsblock.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftthreeeighthsblock.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftthreeeighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftthreeeighthsblock.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftthreeeighthsblock.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftthreequartersblock.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftthreequartersblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftthreequartersblock.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftthreequartersblock.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asterisk.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_asterisk.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asterisk.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_asterisk.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_asterisk_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asterisk_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_asterisk_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_bar.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_bar.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_colon.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_colon.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_colon.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar.ligabar.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar.ligabar.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar.ligabar.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar.ligabar.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.start.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.start.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.start.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal_less.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal_less.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal_less.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen.start.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen.start.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen_less.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen_less.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen_less.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_less.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_equal.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_equal.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_equal.start.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_equal.start.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_equal.start.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_hyphen.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_hyphen.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_hyphen.start.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_hyphen.start.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_less.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_less.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_less.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_plus.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_plus.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_plus.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_plus.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_plus_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_plus_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_plus_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_plus_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_slash.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_slash.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_slash.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_slash_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_slash_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_slash_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/less_slash_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lessequal.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lessequal.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lessequal.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lessequal.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcdnleftbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcdnleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcdnleftbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcdnleftbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcdnrightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcdnrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcdnrightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcdnrightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcupleftbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcupleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcupleftbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcupleftbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcuprightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcuprightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcuprightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcuprightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightdbldashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdbldashhorzbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightdbldashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdbldashvertbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightdbldashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdbldashvertbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightdbldashvertbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiagcrossbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiagcrossbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiagcrossbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiagcrossbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnhorzbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnhorzbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnleftbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnleftbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnleftbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnrightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnrightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnrightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lighthorzbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lighthorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lighthorzbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lighthorzbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightleftbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightleftbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightleftbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightleftheavyrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightleftheavyrightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightleftheavyrightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightquaddashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightquaddashhorzbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightquaddashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightquaddashvertbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightquaddashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightquaddashvertbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightquaddashvertbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightrightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightrightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightrightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightshade.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightshade.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightshade.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightshade.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lighttrpldashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lighttrpldashvertbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lighttrpldashvertbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightupbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightupbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightupbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightupbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightupheavydnbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightupheavydnbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightupheavydnbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightupheavydnbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightuphorzbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightuphorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightuphorzbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightuphorzbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightupleftbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightupleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightupleftbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightupleftbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightuprightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightuprightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightuprightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightuprightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightverthorzbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightverthorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightverthorzbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightverthorzbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertleftbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertleftbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertleftbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertrightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertrightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertrightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ligspacer.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ligspacer.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ligspacer.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ligspacer.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/llinebelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/llinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/llinebelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/llinebelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lmacrondotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lmacrondotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lmacrondotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lmacrondotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lslash.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lslash.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lslash.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/lslash.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/m.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/m.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/m.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/m.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/macron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/macron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/macron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/macron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/macronbelowcmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/macronbelowcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/macronbelowcmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/macronbelowcmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/macroncmb.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/macroncmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/macroncmb.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/macroncmb.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/macroncmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/macroncmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/macroncmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/macroncmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/macronlowmod.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/macronlowmod.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/macronlowmod.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/macronlowmod.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/macute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/macute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/macute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/macute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/mdotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/mdotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/mdotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/mdotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/mdotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/mdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/mdotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/mdotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/mediumshade.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/mediumshade.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/mediumshade.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/mediumshade.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/middotcat.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/middotcat.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/middotcat.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/middotcat.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/middotcat.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/middotcat.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/middotcat.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/middotcat.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/minus.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/minus.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/minus.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/minus.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/mu.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/mu.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/mu.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/mu.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/multiply.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/multiply.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/multiply.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/multiply.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/n.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/n.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/n.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/n.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/nacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/nacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/nacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/nacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/naira.bar.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/naira.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/naira.bar.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/naira.bar.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/naira.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/naira.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/naira.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/naira.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ncaron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ncaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ncaron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ncaron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ncircumflexbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ncircumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ncircumflexbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ncircumflexbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ncommaaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ncommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ncommaaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ncommaaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ndotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ndotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ndotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ndotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ndotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ndotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ndotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ndotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ngrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ngrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ngrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ngrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/nine.den.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/nine.den.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/nine.den.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/nine.den.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/nine.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/nine.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/nine.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/nine.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/nine.inf.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/nine.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/nine.inf.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/nine.inf.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/nine.num.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/nine.num.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/nine.num.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/nine.num.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/nine.sup.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/nine.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/nine.sup.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/nine.sup.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/nlinebelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/nlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/nlinebelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/nlinebelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/notequal.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/notequal.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/notequal.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/notequal.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ntilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ntilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ntilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ntilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.end.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.end.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.end.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.middle.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.middle.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.middle.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.start.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.start.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.start.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_braceleft.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_braceleft.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_braceleft.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_colon.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_colon.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_colon.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_equal.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_equal.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_exclam.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_exclam.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_exclam.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_exclam.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_parenleft.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_parenleft.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_parenleft.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_question.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_question.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_question.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_question.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_underscore.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_underscore.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_underscore.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_underscore.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/o.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/o.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/o.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/o.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/oacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/oacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/oacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/oacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/obreve.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/obreve.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/obreve.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/obreve.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ocaron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ocaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ocaron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ocaron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflexacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflexacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflexacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflexdotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflexdotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflexgrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflexgrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflexgrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflexhookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflexhookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflextilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflextilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ocircumflextilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/odieresis.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/odieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/odieresis.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/odieresis.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/odotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/odotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/odotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/odotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/odotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/odotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/odotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/odotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/oe.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/oe.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/oe.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/oe.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ogonek.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ogonek.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ogonek.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ogonekcmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ogonekcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ogonekcmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ogonekcmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ograve.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ograve.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ograve.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ograve.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ohookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ohookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ohookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ohookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ohorn.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ohorn.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ohorn.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ohorn.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ohornacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ohornacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ohornacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ohornacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ohorndotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ohorndotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ohorndotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ohorndotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ohorngrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ohorngrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ohorngrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ohorngrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ohornhookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ohornhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ohornhookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ohornhookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ohorntilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ohorntilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ohorntilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ohorntilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ohungarumlaut.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ohungarumlaut.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ohungarumlaut.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ohungarumlaut.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/omacron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/omacron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/omacron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/omacron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/one.den.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/one.den.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/one.den.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/one.den.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/one.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/one.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/one.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/one.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/one.inf.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/one.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/one.inf.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/one.inf.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/one.num.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/one.num.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/one.num.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/one.num.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/one.sup.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/one.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/one.sup.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/one.sup.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/oneeighth.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/oneeighth.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/oneeighth.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/oneeighth.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/onefifth.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/onefifth.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/onefifth.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/onefifth.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/onehalf.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/onehalf.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/onehalf.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/onehalf.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/onequarter.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/onequarter.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/onequarter.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/onequarter.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/onesixth.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/onesixth.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/onesixth.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/onesixth.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/onethird.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/onethird.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/onethird.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/onethird.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/oogonek.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/oogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/oogonek.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/oogonek.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ordfeminine.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ordfeminine.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ordfeminine.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ordfeminine.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ordmasculine.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ordmasculine.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ordmasculine.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ordmasculine.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/oslash.bar.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/oslash.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/oslash.bar.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/oslash.bar.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/oslash.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/oslash.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/oslash.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/oslash.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/otilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/otilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/otilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/otilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/p.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/p.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/p.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/p.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/paragraph.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/paragraph.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/paragraph.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/paragraph.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/parenleft.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/parenleft.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/parenleft.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/parenleft.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/parenright.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/parenright.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/parenright.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/parenright.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/percent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/percent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/percent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/percent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/percent_percent.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/percent_percent.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/percent_percent.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/percent_percent.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/period.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/period.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_equal.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/period_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_equal.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/period_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_hyphen.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/period_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_hyphen.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/period_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_period.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/period_period.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_period.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/period_period.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_equal.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_equal.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_less.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_less.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_less.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_period.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_period.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_period.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_period.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_question.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/period_question.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_question.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/period_question.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/periodcentered.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/periodcentered.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/periodcentered.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/periodcentered.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/peso.bar.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/peso.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/peso.bar.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/peso.bar.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/peso.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/peso.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/peso.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/peso.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/plus.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/plus.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/plus.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/plus.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/plus_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/plus_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/plus_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/plus_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/plus_plus.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/plus_plus.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/plus_plus.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/plus_plus.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/plus_plus_plus.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/plus_plus_plus.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/plus_plus_plus.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/plus_plus_plus.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/plusminus.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/plusminus.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/plusminus.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/plusminus.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/primemod.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/primemod.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/primemod.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/primemod.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/published.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/published.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/published.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/published.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/q.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/q.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/q.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/q.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/question.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/question.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question_colon.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/question_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question_colon.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/question_colon.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question_equal.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/question_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question_equal.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/question_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question_period.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/question_period.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question_period.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/question_period.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question_question.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/question_question.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question_question.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/question_question.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/questiondown.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/questiondown.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/questiondown.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/questiondown.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/quotedbl.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/quotedbl.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/quotedbl.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/quotedbl.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/quotedblbase.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/quotedblbase.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/quotedblbase.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/quotedblbase.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/quotedblleft.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/quotedblleft.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/quotedblleft.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/quotedblleft.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/quotedblright.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/quotedblright.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/quotedblright.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/quotedblright.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/quoteleft.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/quoteleft.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/quoteleft.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/quoteleft.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/quoteright.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/quoteright.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/quoteright.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/quoteright.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/quotesinglbase.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/quotesinglbase.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/quotesinglbase.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/quotesinglbase.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/quotesingle.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/quotesingle.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/quotesingle.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/quotesingle.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/r.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/r.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/r.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/r.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/racute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/racute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/racute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/racute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rcaron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rcaron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rcaron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rcommaaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rcommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rcommaaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rcommaaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rdotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rdotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rdotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rdotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rdotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rdotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rdotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/registered.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/registered.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/registered.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/registered.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/righteighthblock.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/righteighthblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/righteighthblock.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/righteighthblock.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/righthalfblock.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/righthalfblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/righthalfblock.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/righthalfblock.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftupheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftupheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftupheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ring.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ring.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ring.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ring.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ringcmb.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ringcmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ringcmb.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ringcmb.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ringcmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ringcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ringcmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ringcmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ringhalfleft.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ringhalfleft.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ringhalfleft.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ringhalfleft.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ringhalfright.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ringhalfright.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ringhalfright.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ringhalfright.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rlinebelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rlinebelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rlinebelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rmacrondotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rmacrondotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rmacrondotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/rmacrondotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/s.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/s.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/s.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/s.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/sacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/sacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/sacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/sacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/scaron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/scaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/scaron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/scaron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/scedilla.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/scedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/scedilla.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/scedilla.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/schwa.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/schwa.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/schwa.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/schwa.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/scircumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/scircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/scircumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/scircumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/scommaaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/scommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/scommaaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/scommaaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/sdotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/sdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/sdotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/sdotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/section.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/section.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/section.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/section.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/semicolon.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/semicolon.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/semicolon.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/semicolon.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/semicolon_semicolon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/semicolon_semicolon.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/semicolon_semicolon.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/servicemark.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/servicemark.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/servicemark.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/servicemark.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/seven.den.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/seven.den.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/seven.den.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/seven.den.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/seven.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/seven.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/seven.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/seven.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/seven.inf.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/seven.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/seven.inf.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/seven.inf.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/seven.num.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/seven.num.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/seven.num.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/seven.num.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/seven.sup.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/seven.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/seven.sup.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/seven.sup.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/seveneighths.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/seveneighths.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/seveneighths.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/seveneighths.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/six.den.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/six.den.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/six.den.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/six.den.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/six.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/six.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/six.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/six.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/six.inf.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/six.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/six.inf.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/six.inf.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/six.num.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/six.num.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/six.num.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/six.num.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/six.sup.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/six.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/six.sup.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/six.sup.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/slash.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/slash.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_asterisk.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/slash_asterisk.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_asterisk.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/slash_asterisk.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_backslash.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/slash_backslash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_backslash.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/slash_backslash.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_equal.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/slash_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_equal.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/slash_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_equal.start.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/slash_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_equal.start.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/slash_equal.start.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_greater.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/slash_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_greater.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/slash_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_equal.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_equal.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_equal.start.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_equal.start.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_equal.start.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_slash.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_slash.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_slash.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/space.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/space.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/space.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/space.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/sterling.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/sterling.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/sterling.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/sterling.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/t.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/t.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/t.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/t.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/tbar.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/tbar.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/tbar.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/tbar.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/tcaron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/tcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/tcaron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/tcaron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/tcedilla.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/tcedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/tcedilla.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/tcedilla.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/tcircumflexbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/tcircumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/tcircumflexbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/tcircumflexbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/tcommaaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/tcommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/tcommaaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/tcommaaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/tdotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/tdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/tdotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/tdotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/thorn.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/thorn.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/thorn.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/thorn.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/three.den.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/three.den.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/three.den.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/three.den.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/three.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/three.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/three.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/three.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/three.inf.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/three.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/three.inf.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/three.inf.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/three.num.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/three.num.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/three.num.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/three.num.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/three.sup.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/three.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/three.sup.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/three.sup.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/threeeighths.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/threeeighths.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/threeeighths.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/threeeighths.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/threefifths.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/threefifths.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/threefifths.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/threefifths.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/threequarters.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/threequarters.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/threequarters.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/threequarters.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/tilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/tilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/tilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/tildecmb.cap.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/tildecmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/tildecmb.cap.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/tildecmb.cap.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/tildecmb.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/tildecmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/tildecmb.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/tildecmb.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/tlinebelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/tlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/tlinebelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/tlinebelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/trademark.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/trademark.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/trademark.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/trademark.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/two.den.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/two.den.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/two.den.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/two.den.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/two.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/two.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/two.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/two.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/two.inf.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/two.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/two.inf.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/two.inf.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/two.num.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/two.num.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/two.num.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/two.num.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/two.sup.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/two.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/two.sup.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/two.sup.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/twodotleader.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/twodotleader.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/twodotleader.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/twodotleader.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/twofifths.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/twofifths.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/twofifths.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/twofifths.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/twothirds.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/twothirds.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/twothirds.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/twothirds.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/u.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/u.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/u.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/u.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ubreve.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ubreve.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ubreve.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ubreve.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ucaron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ucaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ucaron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ucaron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ucircumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ucircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ucircumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ucircumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/udieresis.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/udieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/udieresis.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/udieresis.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/udieresisacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/udieresisacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/udieresisacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/udieresisacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/udieresiscaron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/udieresiscaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/udieresiscaron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/udieresiscaron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/udieresisgrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/udieresisgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/udieresisgrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/udieresisgrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/udieresismacron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/udieresismacron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/udieresismacron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/udieresismacron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/udotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/udotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/udotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/udotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ugrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ugrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ugrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ugrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uhookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uhookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uhookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uhorn.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uhorn.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uhorn.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uhorn.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uhornacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uhornacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uhornacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uhornacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uhorndotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uhorndotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uhorndotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uhorndotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uhorngrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uhorngrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uhorngrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uhorngrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uhornhookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uhornhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uhornhookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uhornhookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uhorntilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uhorntilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uhorntilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uhorntilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uhungarumlaut.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uhungarumlaut.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uhungarumlaut.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uhungarumlaut.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/umacron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/umacron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/umacron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/umacron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.end.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.end.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.end.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.middle.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.middle.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.middle.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.start.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.start.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.start.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/underscore_bar_underscore.m.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore_bar_underscore.m.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/underscore_bar_underscore.m.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni00A_0.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni00A_0.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni00A_0.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni00A_0.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni0326.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni0326.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni0326.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni0326.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni1E_9E_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni1E_9E_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni1E_9E_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni1E_9E_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2011.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni2011.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2011.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni2011.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni20B_9.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni20B_9.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni20B_9.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni20B_9.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni20B_A_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni20B_A_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni20B_A_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni20B_A_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni20B_D_.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni20B_D_.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni20B_D_.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni20B_D_.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2610.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni2610.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2610.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni2610.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2611.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni2611.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2611.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni2611.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2612.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni2612.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2612.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni2612.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2713.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni2713.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2713.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uni2713.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniA_788.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uniA_788.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniA_788.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uniA_788.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_0.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_0.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_0.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_0.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_1.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_1.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_1.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_1.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_2.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_2.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_2.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_2.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_0.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_0.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_0.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_0.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_1.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_1.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_1.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_1.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_2.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_2.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_2.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_2.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_3.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_3.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_3.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_3.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uogonek.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uogonek.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uogonek.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/updblhorzsngbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/updblhorzsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/updblhorzsngbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/updblhorzsngbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/updblleftsngbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/updblleftsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/updblleftsngbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/updblleftsngbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/updblrightsngbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/updblrightsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/updblrightsngbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/updblrightsngbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upeighthblock.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upeighthblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upeighthblock.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upeighthblock.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uphalfblock.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uphalfblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uphalfblock.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uphalfblock.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyhorzlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyhorzlightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyhorzlightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyleftlightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyleftlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyleftlightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyleftlightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyrightlightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyrightlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyrightlightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyrightlightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftdnrightquadrant.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upleftdnrightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftdnrightquadrant.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upleftdnrightquadrant.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftquadrant.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upleftquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftquadrant.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upleftquadrant.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplighthorzheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uplighthorzheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplighthorzheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uplighthorzheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uplightleftdnheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightleftdnheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uplightleftdnheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightleftheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uplightleftheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightleftheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uplightleftheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uplightrightdnheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightrightdnheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uplightrightdnheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightrightheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uplightrightheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightrightheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uplightrightheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uprightdnleftquadrant.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uprightdnleftquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uprightdnleftquadrant.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uprightdnleftquadrant.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uprightquadrant.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uprightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uprightquadrant.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uprightquadrant.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upsnghorzdblbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upsnghorzdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upsnghorzdblbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upsnghorzdblbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upsngleftdblbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upsngleftdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upsngleftdblbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upsngleftdblbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upsngrightdblbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upsngrightdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upsngrightdblbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/upsngrightdblbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uring.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uring.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uring.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/uring.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/utilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/utilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/utilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/utilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/v.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/v.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/v.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/v.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vdotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vdotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vdotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblhorzsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblhorzsngbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblhorzsngbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblleftsngbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblleftsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblleftsngbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblleftsngbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblrightsngbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblrightsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblrightsngbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblrightsngbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyleftlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyleftlightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyleftlightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyrightlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyrightlightbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyrightlightbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/verticallinelowmod.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/verticallinelowmod.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/verticallinelowmod.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/verticallinelowmod.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/verticallinemod.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/verticallinemod.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/verticallinemod.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/verticallinemod.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertlighthorzheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertlighthorzheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertlighthorzheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertlightleftheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertlightleftheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertlightleftheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertlightleftheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertlightrightheavybxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertlightrightheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertlightrightheavybxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertlightrightheavybxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertsnghorzdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertsnghorzdblbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertsnghorzdblbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertsngleftdblbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertsngleftdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertsngleftdblbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertsngleftdblbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertsngrightdblbxd.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertsngrightdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertsngrightdblbxd.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/vertsngrightdblbxd.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/w.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/w.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/w.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/w.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/w_w_w.liga.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/w_w_w.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/w_w_w.liga.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/w_w_w.liga.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/wacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/wacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/wacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/wacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/wcircumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/wcircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/wcircumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/wcircumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/wdieresis.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/wdieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/wdieresis.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/wdieresis.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/wgrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/wgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/wgrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/wgrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/won.bar.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/won.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/won.bar.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/won.bar.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/won.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/won.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/won.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/won.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/x.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/x.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/x.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/x.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/xdieresis.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/xdieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/xdieresis.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/xdieresis.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/y.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/y.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/y.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/y.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/yacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/yacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/yacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/yacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ycircumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ycircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ycircumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ycircumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ydieresis.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ydieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ydieresis.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ydieresis.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ydotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ydotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ydotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ydotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ydotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ydotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ydotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ydotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/yen.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/yen.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/yen.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/yen.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ygrave.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ygrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ygrave.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ygrave.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/yhookabove.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/yhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/yhookabove.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/yhookabove.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ymacron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ymacron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ymacron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ymacron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ytilde.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ytilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ytilde.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/ytilde.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/z.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/z.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/z.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/z.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zacute.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zacute.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zacute.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zcaron.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zcaron.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zcaron.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zcircumflex.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zcircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zcircumflex.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zcircumflex.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zdotaccent.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zdotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zdotaccent.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zdotaccent.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zdotbelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zdotbelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zdotbelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zero.den.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zero.den.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zero.den.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zero.den.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zero.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zero.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zero.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zero.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zero.inf.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zero.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zero.inf.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zero.inf.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zero.num.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zero.num.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zero.num.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zero.num.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zero.sup.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zero.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zero.sup.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zero.sup.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zlinebelow.glif b/sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/zlinebelow.glif rename to sources/main/IntelOneMono-Bold-mstr.ufo/glyphs/zlinebelow.glif diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/layercontents.plist b/sources/main/IntelOneMono-Bold-mstr.ufo/layercontents.plist similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/layercontents.plist rename to sources/main/IntelOneMono-Bold-mstr.ufo/layercontents.plist diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/lib.plist b/sources/main/IntelOneMono-Bold-mstr.ufo/lib.plist similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/lib.plist rename to sources/main/IntelOneMono-Bold-mstr.ufo/lib.plist diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/metainfo.plist b/sources/main/IntelOneMono-Bold-mstr.ufo/metainfo.plist similarity index 100% rename from sources/masters/IntelOneMono-Bold-mstr.ufo/metainfo.plist rename to sources/main/IntelOneMono-Bold-mstr.ufo/metainfo.plist diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/features.fea b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/features.fea similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/features.fea rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/features.fea diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/fontinfo.plist b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/fontinfo.plist similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/fontinfo.plist rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/fontinfo.plist diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_E_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_E_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_E_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_E_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_acute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_acute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_acute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_breve.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_breve.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_breve.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_breveacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_breveacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_breveacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_breveacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_brevedotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_brevedotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_brevedotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_brevedotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_brevegrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_brevegrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_brevegrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_brevegrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_brevehookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_brevehookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_brevehookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_brevehookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_brevetilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_brevetilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_brevetilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_brevetilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_caron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_caron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_caron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflexacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflexacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflexacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflexdotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflexdotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflexgrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflexgrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflexgrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflexhookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflexhookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflextilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflextilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_circumflextilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_dieresis.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_dieresis.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_dieresis.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_dotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_dotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_dotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_dotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_dotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_dotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_grave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_grave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_grave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_hookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_hookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_hookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_macron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_macron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_macron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_ogonek.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_ogonek.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_ogonek.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_ring.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_ring.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_ring.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_ring.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_tilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_tilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/A_tilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/B_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/B_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/B_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/B_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/B_linebelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/B_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/B_linebelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/B_linebelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_acute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_acute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_acute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_caron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_caron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_caron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_cedilla.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_cedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_cedilla.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_cedilla.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_circumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_circumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_circumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_dotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_dotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/C_dotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_caron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_caron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_caron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_circumflexbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_circumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_circumflexbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_circumflexbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_croat.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_croat.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_croat.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_croat.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_dotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_dotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_dotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_linebelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_linebelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/D_linebelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_acute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_acute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_acute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_breve.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_breve.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_breve.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_caron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_caron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_caron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflexacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflexacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflexacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflexdotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflexdotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflexgrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflexgrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflexgrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflexhookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflexhookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflextilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflextilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_circumflextilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_dieresis.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_dieresis.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_dieresis.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_dotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_dotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_dotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_dotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_dotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_dotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_grave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_grave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_grave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_hookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_hookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_hookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_macron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_macron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_macron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_ng.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_ng.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_ng.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_ng.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_ogonek.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_ogonek.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_ogonek.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_th.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_th.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_th.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_th.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_tilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_tilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_tilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_uro.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_uro.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_uro.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/E_uro.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/F_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/F_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/F_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/F_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_breve.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_breve.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_breve.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_caron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_caron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_caron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_circumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_circumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_circumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_commaaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_commaaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_commaaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_dotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_dotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_dotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_macron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_macron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/G_macron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_bar.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_bar.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_bar.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_bar.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_brevebelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_brevebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_brevebelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_brevebelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_cedilla.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_cedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_cedilla.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_cedilla.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_circumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_circumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_circumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_dotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_dotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/H_dotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_acute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_acute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_acute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_breve.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_breve.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_breve.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_caron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_caron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_caron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_circumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_circumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_circumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_dieresis.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_dieresis.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_dieresis.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_dotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_dotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_dotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_dotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_dotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_dotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_grave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_grave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_grave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_hookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_hookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_hookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_macron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_macron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_macron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_ogonek.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_ogonek.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_ogonek.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_tilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_tilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/I_tilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/J_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/J_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/J_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/J_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/J_circumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/J_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/J_circumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/J_circumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/K_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/K_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/K_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/K_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/K_commaaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/K_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/K_commaaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/K_commaaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/K_dotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/K_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/K_dotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/K_dotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/K_linebelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/K_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/K_linebelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/K_linebelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_.dot.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_.dot.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_.dot.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_.dot.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_acute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_acute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_acute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_caron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_caron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_caron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_circumflexbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_circumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_circumflexbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_circumflexbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_commaaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_commaaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_commaaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_dotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_dotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_dotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_linebelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_linebelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_linebelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_macrondotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_macrondotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_macrondotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_macrondotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_slash.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_slash.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_slash.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_slash.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/M_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/M_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/M_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/M_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/M_acute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/M_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/M_acute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/M_acute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/M_dotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/M_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/M_dotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/M_dotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/M_dotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/M_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/M_dotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/M_dotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_acute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_acute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_acute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_caron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_caron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_caron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_circumflexbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_circumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_circumflexbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_circumflexbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_commaaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_commaaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_commaaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_dotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_dotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_dotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_dotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_dotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_dotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_grave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_grave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_grave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_linebelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_linebelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_linebelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_tilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_tilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/N_tilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_E_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_E_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_E_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_E_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_acute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_acute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_acute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_breve.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_breve.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_breve.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_caron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_caron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_caron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflexacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflexacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflexacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflexdotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflexdotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflexgrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflexgrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflexgrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflexhookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflexhookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflextilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflextilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_circumflextilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_dieresis.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_dieresis.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_dieresis.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_dotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_dotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_dotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_dotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_dotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_dotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_grave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_grave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_grave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_hookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_hookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_hookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_horn.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_horn.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_horn.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_horn.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_hornacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_hornacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_hornacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_hornacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_horndotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_horndotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_horndotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_horndotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_horngrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_horngrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_horngrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_horngrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_hornhookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_hornhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_hornhookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_hornhookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_horntilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_horntilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_horntilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_horntilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_hungarumlaut.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_hungarumlaut.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_hungarumlaut.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_hungarumlaut.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_macron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_macron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_macron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_ogonek.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_ogonek.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_ogonek.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_slash.bar.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_slash.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_slash.bar.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_slash.bar.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_slash.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_slash.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_slash.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_slash.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_tilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_tilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/O_tilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/P_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/P_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/P_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/P_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Q_.bar.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Q_.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Q_.bar.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Q_.bar.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Q_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Q_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Q_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Q_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_acute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_acute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_acute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_caron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_caron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_caron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_commaaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_commaaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_commaaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_dotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_dotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_dotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_dotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_dotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_dotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_linebelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_linebelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_linebelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_macrondotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_macrondotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_macrondotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/R_macrondotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_acute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_acute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_acute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_caron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_caron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_caron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_cedilla.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_cedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_cedilla.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_cedilla.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_chwa.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_chwa.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_chwa.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_chwa.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_circumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_circumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_circumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_commaaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_commaaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_commaaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_dotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_dotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/S_dotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_bar.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_bar.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_bar.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_bar.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_caron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_caron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_caron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_cedilla.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_cedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_cedilla.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_cedilla.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_circumflexbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_circumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_circumflexbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_circumflexbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_commaaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_commaaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_commaaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_dotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_dotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_dotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_horn.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_horn.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_horn.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_horn.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_linebelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_linebelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/T_linebelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_acute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_acute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_acute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_breve.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_breve.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_breve.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_caron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_caron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_caron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_circumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_circumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_circumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dieresis.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dieresis.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dieresis.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dieresisacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dieresisacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dieresisacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dieresisacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dieresiscaron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dieresiscaron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dieresiscaron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dieresiscaron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dieresisgrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dieresisgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dieresisgrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dieresisgrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dieresismacron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dieresismacron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dieresismacron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dieresismacron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_dotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_grave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_grave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_grave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_hookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_hookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_hookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_horn.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_horn.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_horn.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_horn.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_hornacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_hornacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_hornacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_hornacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_horndotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_horndotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_horndotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_horndotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_horngrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_horngrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_horngrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_horngrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_hornhookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_hornhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_hornhookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_hornhookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_horntilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_horntilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_horntilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_horntilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_hungarumlaut.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_hungarumlaut.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_hungarumlaut.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_hungarumlaut.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_macron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_macron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_macron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_ogonek.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_ogonek.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_ogonek.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_ring.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_ring.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_ring.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_ring.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_tilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_tilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/U_tilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/V_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/V_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/V_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/V_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/V_dotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/V_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/V_dotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/V_dotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/W_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/W_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/W_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/W_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/W_acute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/W_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/W_acute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/W_acute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/W_circumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/W_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/W_circumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/W_circumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/W_dieresis.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/W_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/W_dieresis.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/W_dieresis.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/W_grave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/W_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/W_grave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/W_grave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/X_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/X_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/X_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/X_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/X_dieresis.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/X_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/X_dieresis.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/X_dieresis.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_acute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_acute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_acute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_circumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_circumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_circumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_dieresis.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_dieresis.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_dieresis.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_dotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_dotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_dotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_dotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_dotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_dotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_grave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_grave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_grave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_hookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_hookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_hookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_macron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_macron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_macron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_tilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_tilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Y_tilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_acute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_acute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_acute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_caron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_caron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_caron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_circumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_circumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_circumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_dotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_dotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_dotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_dotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_dotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_dotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_linebelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_linebelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/Z_linebelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/_notdef.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/_notdef.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/_notdef.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/_notdef.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/a.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/a.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/a.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/a.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/aacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/aacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/aacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/aacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abreve.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abreve.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abreve.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abreve.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abreveacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abreveacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abreveacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abreveacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abrevedotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abrevedotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abrevedotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abrevedotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abrevegrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abrevegrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abrevegrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abrevegrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abrevehookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abrevehookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abrevehookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abrevehookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abrevetilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abrevetilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abrevetilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/abrevetilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acaron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acaron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acaron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acaron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflexacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflexacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflexacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflexdotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflexdotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflexgrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflexgrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflexgrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflexhookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflexhookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflextilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflextilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acircumflextilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acutecmb.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acutecmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acutecmb.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acutecmb.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acutecmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acutecmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acutecmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acutecmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/adieresis.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/adieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/adieresis.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/adieresis.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/adotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/adotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/adotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/adotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/adotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/adotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/adotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/adotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ae.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ae.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ae.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ae.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/agrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/agrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/agrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/agrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ahookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ahookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ahookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ahookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/amacron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/amacron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/amacron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/amacron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ampersand.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ampersand.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ampersand.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ampersand.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ampersand_ampersand.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ampersand_ampersand.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ampersand_ampersand.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/aogonek.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/aogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/aogonek.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/aogonek.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/apostrophemod.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/apostrophemod.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/apostrophemod.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/apostrophemod.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/approxequal.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/approxequal.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/approxequal.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/approxequal.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/aring.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/aring.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/aring.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/aring.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadleft.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadleft.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadleft.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadleft.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadleftopen.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadleftopen.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadleftopen.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadleftopen.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadright.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadright.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadright.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadright.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadrightopen.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadrightopen.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadrightopen.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadrightopen.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciicircum.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciicircum.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciicircum.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciicircum.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciicircum_equal.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciicircum_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciicircum_equal.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciicircum_equal.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_at.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_at.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_at.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_at.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_asterisk.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_asterisk.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_asterisk.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_slash.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_slash.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_slash.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/at.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/at.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/at.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/at.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/atilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/atilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/atilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/atilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/b.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/b.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/b.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/b.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/backslash.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/backslash.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/backslash.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/backslash.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/backslash_slash.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/backslash_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/backslash_slash.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/backslash_slash.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bahtthai.bar.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bahtthai.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bahtthai.bar.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bahtthai.bar.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bahtthai.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bahtthai.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bahtthai.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bahtthai.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_bar.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_bar.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_equal.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_equal.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_equal.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_equal.start.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_equal.start.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_equal.start.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_hyphen.start.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_braceright.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_braceright.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_braceright.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_braceright.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bracketright.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bracketright.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bracketright.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bracketright.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_equal.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_equal.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_equal.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_equal.start.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_equal.start.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_equal.start.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_hyphen.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_hyphen.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_hyphen.start.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_hyphen.start.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/blinebelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/blinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/blinebelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/blinebelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/braceleft.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/braceleft.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/braceleft.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/braceleft.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/braceleft_bar.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/braceleft_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/braceleft_bar.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/braceleft_bar.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/braceright.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/braceright.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/braceright.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/braceright.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketleft.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketleft.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketleft.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketleft.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketleft_bar.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketleft_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketleft_bar.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketleft_bar.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketright.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketright.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketright.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketright.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketright_numbersign.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketright_numbersign.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketright_numbersign.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/breve.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/breve.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/breve.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/breve.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/breveacute.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/breveacute.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/breveacute.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/breveacute.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/breveacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/breveacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/breveacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/breveacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevebelowcmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevebelowcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevebelowcmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevebelowcmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevecmb.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevecmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevecmb.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevecmb.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevecmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevecmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevecmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevecmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevegrave.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevegrave.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevegrave.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevegrave.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevegrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevegrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevegrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevegrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevehook.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevehook.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevehook.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevehook.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevehook.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevehook.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevehook.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevehook.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevetilde.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevetilde.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevetilde.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevetilde.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevetilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevetilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevetilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/brevetilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bullet.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bullet.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bullet.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bullet.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/c.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/c.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/c.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/c.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/caron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/caron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/caron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/caron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/caroncmb.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/caroncmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/caroncmb.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/caroncmb.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/caroncmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/caroncmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/caroncmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/caroncmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ccaron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ccaron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ccaron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ccaron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ccedilla.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ccedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ccedilla.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ccedilla.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ccircumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ccircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ccircumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ccircumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cdotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cdotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cdotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cdotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cedilla.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cedilla.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cedilla.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cedillacmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cedillacmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cedillacmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cedillacmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cent.bar.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cent.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cent.bar.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cent.bar.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/cent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexacute.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexacute.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexacute.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexacute.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexbelowcmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexbelowcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexbelowcmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexbelowcmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexcmb.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexcmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexcmb.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexcmb.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexcmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexcmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexcmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexgrave.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexgrave.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexgrave.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexgrave.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexgrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexgrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexgrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexhook.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexhook.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexhook.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexhook.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexhook.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexhook.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexhook.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflexhook.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflextilde.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflextilde.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflextilde.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflextilde.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflextilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflextilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/circumflextilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon.fig.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon.fig.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon.fig.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon.fig.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon_colon.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon_colon.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon_colon.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon_equal.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon_equal.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon_equal.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_equal.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_equal.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_equal.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_less.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_less.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_less.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/comma.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/comma.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/comma.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/comma.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/commaaboverightcmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/commaaboverightcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/commaaboverightcmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/commaaboverightcmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/commaturnedabovecmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/commaturnedabovecmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/commaturnedabovecmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/commaturnedabovecmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/commaturnedmod.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/commaturnedmod.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/commaturnedmod.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/commaturnedmod.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/contents.plist b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/contents.plist similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/contents.plist rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/contents.plist diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/copyright.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/copyright.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/copyright.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/copyright.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/d.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/d.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/d.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/d.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dagger.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dagger.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dagger.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dagger.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/daggerdbl.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/daggerdbl.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/daggerdbl.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/daggerdbl.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/darkshade.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/darkshade.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/darkshade.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/darkshade.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnhorzbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnhorzbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnhorzbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnleftbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnleftbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnleftbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnrightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnrightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnrightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblhorzbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblhorzbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblhorzbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblprimemod.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblprimemod.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblprimemod.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblprimemod.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbluphorzbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbluphorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbluphorzbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbluphorzbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblupleftbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblupleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblupleftbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblupleftbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbluprightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbluprightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbluprightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbluprightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblverthorzbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblverthorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblverthorzbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblverthorzbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertleftbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertleftbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertleftbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertrightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertrightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertrightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dcaron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dcaron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dcaron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dcircumflexbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dcircumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dcircumflexbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dcircumflexbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dcroat.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dcroat.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dcroat.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dcroat.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ddotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ddotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ddotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ddotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/degree.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/degree.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/degree.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/degree.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresis.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresis.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresis.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresisacute.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresisacute.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresisacute.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresisacute.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresisacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresisacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresisacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresisacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresisbelowcmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresisbelowcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresisbelowcmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresisbelowcmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresiscaron.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresiscaron.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresiscaron.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresiscaron.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresiscaron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresiscaron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresiscaron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresiscaron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresiscmb.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresiscmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresiscmb.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresiscmb.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresiscmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresiscmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresiscmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresiscmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresisgrave.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresisgrave.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresisgrave.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresisgrave.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresisgrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresisgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresisgrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresisgrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresismacron.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresismacron.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresismacron.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresismacron.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresismacron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresismacron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresismacron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dieresismacron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/divide.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/divide.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/divide.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/divide.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dlinebelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dlinebelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dlinebelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblhorzsngbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblhorzsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblhorzsngbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblhorzsngbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblleftsngbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblleftsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblleftsngbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblleftsngbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblrightsngbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblrightsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblrightsngbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblrightsngbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dneighthblock.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dneighthblock.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dneighthblock.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dneighthblock.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnfiveeighthsblock.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnfiveeighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnfiveeighthsblock.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnfiveeighthsblock.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnhalfblock.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnhalfblock.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnhalfblock.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnhalfblock.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyleftlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyleftlightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyleftlightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyrightlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyrightlightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyrightlightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnleftquadrant.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnleftquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnleftquadrant.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnleftquadrant.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlighthorzheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlighthorzheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlighthorzheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightleftheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightleftheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightleftheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightleftheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightleftupheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightleftupheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightleftupheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightrightheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightrightheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightrightheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightrightheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightrightupheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightrightupheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightrightupheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnquarterblock.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnquarterblock.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnquarterblock.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnquarterblock.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnrightquadrant.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnrightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnrightquadrant.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnrightquadrant.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnseveneighthsblock.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnseveneighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnseveneighthsblock.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnseveneighthsblock.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsnghorzdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsnghorzdblbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsnghorzdblbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsngleftdblbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsngleftdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsngleftdblbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsngleftdblbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsngrightdblbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsngrightdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsngrightdblbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsngrightdblbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnthreeeighthsblock.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnthreeeighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnthreeeighthsblock.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnthreeeighthsblock.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnthreequartersblock.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnthreequartersblock.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnthreequartersblock.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnthreequartersblock.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar.bar.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar.bar.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar.bar.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar_greater.ligabar.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar_greater.ligabar.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar_greater.ligabar.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar_greater.ligabar.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dong.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dong.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dong.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dong.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotaccentcmb.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotaccentcmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotaccentcmb.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotaccentcmb.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotaccentcmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotaccentcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotaccentcmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotaccentcmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotbelowcmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotbelowcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotbelowcmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotbelowcmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotlessi.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotlessi.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotlessi.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotlessi.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotlessj.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotlessj.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotlessj.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dotlessj.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/e.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/e.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/e.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/e.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ebreve.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ebreve.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ebreve.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ebreve.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecaron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecaron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecaron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecaron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflexacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflexacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflexacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflexdotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflexdotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflexgrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflexgrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflexgrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflexhookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflexhookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflextilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflextilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ecircumflextilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/edieresis.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/edieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/edieresis.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/edieresis.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/edotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/edotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/edotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/edotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/edotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/edotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/edotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/edotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/egrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/egrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/egrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/egrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ehookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ehookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ehookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ehookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eight.den.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eight.den.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eight.den.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eight.den.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eight.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eight.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eight.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eight.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eight.inf.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eight.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eight.inf.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eight.inf.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eight.num.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eight.num.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eight.num.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eight.num.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eight.sup.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eight.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eight.sup.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eight.sup.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ellipsis.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ellipsis.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ellipsis.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ellipsis.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/emacron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/emacron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/emacron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/emacron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/emdash.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/emdash.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/emdash.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/emdash.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/endash.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/endash.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/endash.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/endash.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eng.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eng.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eng.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eng.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eogonek.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eogonek.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eogonek.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.end.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.end.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.end.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.end.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.middle.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.middle.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.middle.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.start.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.start.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.start.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_asciitilde.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_asciitilde.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar.end.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar.end.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar.end.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar.end.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar.end.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar.end.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar.end.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar.end.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_equal.middle.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_equal.middle.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_equal.middle.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_colon_equal.middle.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_colon_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_colon_equal.middle.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_colon_equal.middle.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_equal.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_equal.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_equal.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_equal_equal.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_equal_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_equal_equal.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_equal_equal.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_exclam_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_exclam_equal.middle.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_exclam_equal.middle.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater.end.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater.end.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater.end.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater.end.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_equal.middle.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_equal.middle.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_equal.middle.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater.end.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater.end.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater.end.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater.end.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less.end.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less.end.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less.end.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less.end.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_equal.middle.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_equal.middle.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_equal.middle.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less.end.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less.end.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less.end.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less.end.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less_equal.middle.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less_equal.middle.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash.end.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash.end.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash.end.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash.end.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_equal.middle.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_equal.middle.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_equal.middle.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash.end.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash.end.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash.end.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash.end.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eth.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eth.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eth.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/eth.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/etilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/etilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/etilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/etilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_asciitilde.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_equal.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_equal.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_equal.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_equal_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_equal_equal.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_equal_equal.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_exclam.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_exclam.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_exclam.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_exclam.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_exclam_period.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_exclam_period.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_exclam_period.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclamdown.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclamdown.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclamdown.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclamdown.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/f.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/f.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/f.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/f.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/five.den.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/five.den.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/five.den.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/five.den.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/five.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/five.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/five.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/five.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/five.inf.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/five.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/five.inf.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/five.inf.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/five.num.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/five.num.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/five.num.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/five.num.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/five.sup.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/five.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/five.sup.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/five.sup.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fiveeighths.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fiveeighths.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fiveeighths.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fiveeighths.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fivesixths.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fivesixths.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fivesixths.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fivesixths.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/four.den.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/four.den.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/four.den.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/four.den.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/four.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/four.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/four.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/four.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/four.inf.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/four.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/four.inf.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/four.inf.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/four.num.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/four.num.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/four.num.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/four.num.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/four.sup.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/four.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/four.sup.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/four.sup.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fourfifths.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fourfifths.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fourfifths.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fourfifths.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fracbar.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fracbar.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fracbar.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fracbar.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fraction.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fraction.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fraction.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fraction.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fullblock.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fullblock.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fullblock.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fullblock.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/g.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/g.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/g.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/g.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gbreve.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gbreve.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gbreve.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gbreve.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gcaron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gcaron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gcaron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gcircumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gcircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gcircumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gcircumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gcommaaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gcommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gcommaaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gcommaaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gdotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gdotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gdotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gdotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/germandbls.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/germandbls.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/germandbls.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/germandbls.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gmacron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gmacron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gmacron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gmacron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/grave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/grave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/grave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/grave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gravecmb.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gravecmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gravecmb.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gravecmb.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gravecmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gravecmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gravecmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/gravecmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_colon.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_colon.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_colon.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.start.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.start.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.start.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_equal.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_equal.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_equal.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_equal.start.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_equal.start.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_equal.start.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_hyphen.start.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen.start.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen.start.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greaterequal.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greaterequal.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greaterequal.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greaterequal.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/guillemetleft.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/guillemetleft.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/guillemetleft.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/guillemetleft.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/guillemetright.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/guillemetright.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/guillemetright.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/guillemetright.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/guilsinglleft.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/guilsinglleft.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/guilsinglleft.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/guilsinglleft.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/guilsinglright.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/guilsinglright.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/guilsinglright.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/guilsinglright.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/h.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/h.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/h.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/h.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hbar.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hbar.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hbar.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hbar.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hbrevebelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hbrevebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hbrevebelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hbrevebelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hcedilla.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hcedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hcedilla.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hcedilla.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hcircumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hcircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hcircumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hcircumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hdotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hdotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hdotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydbldashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydbldashhorzbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydbldashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydbldashvertbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydbldashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydbldashvertbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydbldashvertbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnhorzbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnhorzbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnhorzbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnleftbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnleftbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnleftbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnrightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnrightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnrightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyhorzbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyhorzbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyhorzbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyleftbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyleftbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyleftbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyleftlightrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyleftlightrightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyleftlightrightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyquaddashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyquaddashvertbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyquaddashvertbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyrightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyrightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyrightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavytrpldashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavytrpldashvertbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavytrpldashvertbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyupbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyupbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyupbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyupbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuphorzbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuphorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuphorzbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuphorzbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyupleftbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyupleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyupleftbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyupleftbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuplightdnbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuplightdnbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuplightdnbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuplightdnbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuprightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuprightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuprightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuprightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyverthorzbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyverthorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyverthorzbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyverthorzbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertleftbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertleftbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertleftbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertrightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertrightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertrightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hlinebelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hlinebelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hlinebelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hookcmb.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hookcmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hookcmb.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hookcmb.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hookcmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hookcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hookcmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hookcmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/horizontalbar.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/horizontalbar.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/horizontalbar.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/horizontalbar.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hungarumlaut.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hungarumlaut.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hungarumlaut.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hungarumlaut.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hungarumlautcmb.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hungarumlautcmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hungarumlautcmb.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hungarumlautcmb.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hungarumlautcmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hungarumlautcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hungarumlautcmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hungarumlautcmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.end.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.end.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.end.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.end.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.middle.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.middle.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.start.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.start.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.start.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar.end.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar.end.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar.end.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar.end.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar.end.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar.end.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar.end.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater.end.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater.end.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater.end.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater.end.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater.end.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater.end.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater.end.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_hyphen.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less.end.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less.end.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less.end.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less.end.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less.end.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less.end.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less.end.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less.end.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/i.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/i.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/i.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/i.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/iacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/iacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/iacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/iacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ibreve.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ibreve.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ibreve.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ibreve.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/icaron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/icaron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/icaron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/icaron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/icircumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/icircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/icircumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/icircumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/idieresis.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/idieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/idieresis.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/idieresis.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/idotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/idotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/idotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/idotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/idotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/idotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/idotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/idotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/igrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/igrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/igrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/igrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ihookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ihookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ihookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ihookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/imacron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/imacron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/imacron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/imacron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/iogonek.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/iogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/iogonek.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/iogonek.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/itilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/itilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/itilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/itilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/j.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/j.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/j.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/j.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/jcaron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/jcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/jcaron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/jcaron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/jcircumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/jcircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/jcircumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/jcircumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/k.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/k.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/k.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/k.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/kcommaaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/kcommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/kcommaaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/kcommaaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/kdotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/kdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/kdotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/kdotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/klinebelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/klinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/klinebelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/klinebelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/l.dot.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/l.dot.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/l.dot.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/l.dot.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/l.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/l.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/l.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/l.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/layerinfo.plist b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/layerinfo.plist similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/layerinfo.plist rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/layerinfo.plist diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lcaron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lcaron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lcaron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lcircumflexbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lcircumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lcircumflexbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lcircumflexbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lcommaaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lcommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lcommaaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lcommaaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ldotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ldotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ldotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ldotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lefteighthblock.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lefteighthblock.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lefteighthblock.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lefteighthblock.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftfiveeighthsblock.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftfiveeighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftfiveeighthsblock.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftfiveeighthsblock.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lefthalfblock.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lefthalfblock.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lefthalfblock.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lefthalfblock.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightupheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightupheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightupheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftquarterblock.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftquarterblock.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftquarterblock.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftquarterblock.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftseveneighthsblock.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftseveneighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftseveneighthsblock.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftseveneighthsblock.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftthreeeighthsblock.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftthreeeighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftthreeeighthsblock.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftthreeeighthsblock.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftthreequartersblock.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftthreequartersblock.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftthreequartersblock.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftthreequartersblock.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asterisk.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asterisk.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asterisk.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asterisk.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asterisk_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asterisk_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asterisk_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_bar.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_bar.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_colon.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_colon.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_colon.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar.ligabar.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar.ligabar.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar.ligabar.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar.ligabar.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.start.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.start.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.start.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal_less.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal_less.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal_less.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen.start.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen.start.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen_less.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen_less.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen_less.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_equal.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_equal.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_equal.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_equal.start.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_equal.start.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_equal.start.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_hyphen.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_hyphen.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_hyphen.start.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_hyphen.start.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_less.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_less.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_less.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_plus.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_plus.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_plus.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_plus.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_plus_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_plus_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_plus_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_plus_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_slash.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_slash.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_slash.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_slash_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_slash_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_slash_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_slash_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lessequal.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lessequal.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lessequal.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lessequal.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcdnleftbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcdnleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcdnleftbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcdnleftbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcdnrightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcdnrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcdnrightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcdnrightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcupleftbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcupleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcupleftbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcupleftbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcuprightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcuprightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcuprightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcuprightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdbldashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdbldashhorzbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdbldashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdbldashvertbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdbldashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdbldashvertbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdbldashvertbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiagcrossbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiagcrossbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiagcrossbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiagcrossbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnhorzbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnhorzbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnhorzbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnleftbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnleftbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnleftbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnrightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnrightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnrightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighthorzbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighthorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighthorzbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighthorzbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightleftbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightleftbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightleftbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightleftheavyrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightleftheavyrightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightleftheavyrightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightquaddashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightquaddashhorzbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightquaddashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightquaddashvertbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightquaddashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightquaddashvertbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightquaddashvertbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightrightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightrightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightrightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightshade.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightshade.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightshade.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightshade.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighttrpldashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighttrpldashvertbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighttrpldashvertbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupheavydnbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupheavydnbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupheavydnbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupheavydnbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightuphorzbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightuphorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightuphorzbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightuphorzbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupleftbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupleftbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupleftbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightuprightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightuprightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightuprightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightuprightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightverthorzbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightverthorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightverthorzbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightverthorzbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertleftbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertleftbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertleftbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertrightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertrightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertrightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ligspacer.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ligspacer.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ligspacer.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ligspacer.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/llinebelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/llinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/llinebelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/llinebelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lmacrondotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lmacrondotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lmacrondotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lmacrondotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lslash.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lslash.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lslash.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lslash.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/m.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/m.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/m.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/m.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macronbelowcmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macronbelowcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macronbelowcmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macronbelowcmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macroncmb.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macroncmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macroncmb.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macroncmb.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macroncmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macroncmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macroncmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macroncmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macronlowmod.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macronlowmod.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macronlowmod.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macronlowmod.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/macute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/mdotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/mdotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/mdotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/mdotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/mdotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/mdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/mdotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/mdotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/mediumshade.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/mediumshade.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/mediumshade.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/mediumshade.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/middotcat.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/middotcat.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/middotcat.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/middotcat.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/middotcat.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/middotcat.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/middotcat.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/middotcat.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/minus.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/minus.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/minus.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/minus.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/mu.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/mu.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/mu.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/mu.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/multiply.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/multiply.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/multiply.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/multiply.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/n.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/n.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/n.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/n.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/naira.bar.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/naira.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/naira.bar.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/naira.bar.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/naira.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/naira.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/naira.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/naira.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ncaron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ncaron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ncaron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ncaron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ncircumflexbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ncircumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ncircumflexbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ncircumflexbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ncommaaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ncommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ncommaaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ncommaaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ndotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ndotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ndotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ndotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ndotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ndotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ndotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ndotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ngrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ngrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ngrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ngrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nine.den.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nine.den.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nine.den.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nine.den.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nine.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nine.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nine.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nine.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nine.inf.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nine.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nine.inf.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nine.inf.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nine.num.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nine.num.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nine.num.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nine.num.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nine.sup.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nine.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nine.sup.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nine.sup.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nlinebelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nlinebelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/nlinebelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/notequal.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/notequal.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/notequal.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/notequal.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ntilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ntilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ntilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ntilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.end.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.end.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.end.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.end.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.middle.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.middle.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.middle.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.start.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.start.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.start.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.start.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_braceleft.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_braceleft.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_braceleft.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_colon.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_colon.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_colon.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_equal.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_equal.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_equal.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_exclam.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_exclam.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_exclam.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_exclam.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_parenleft.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_parenleft.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_parenleft.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_question.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_question.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_question.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_question.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_underscore.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_underscore.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_underscore.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_underscore.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/o.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/o.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/o.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/o.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/obreve.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/obreve.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/obreve.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/obreve.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocaron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocaron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocaron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocaron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflexacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflexacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflexacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflexdotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflexdotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflexgrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflexgrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflexgrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflexhookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflexhookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflextilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflextilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ocircumflextilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/odieresis.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/odieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/odieresis.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/odieresis.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/odotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/odotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/odotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/odotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/odotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/odotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/odotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/odotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oe.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oe.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oe.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oe.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ogonek.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ogonek.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ogonek.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ogonekcmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ogonekcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ogonekcmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ogonekcmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ograve.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ograve.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ograve.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ograve.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohorn.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohorn.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohorn.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohorn.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohornacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohornacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohornacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohornacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohorndotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohorndotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohorndotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohorndotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohorngrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohorngrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohorngrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohorngrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohornhookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohornhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohornhookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohornhookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohorntilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohorntilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohorntilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohorntilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohungarumlaut.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohungarumlaut.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohungarumlaut.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ohungarumlaut.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/omacron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/omacron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/omacron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/omacron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/one.den.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/one.den.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/one.den.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/one.den.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/one.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/one.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/one.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/one.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/one.inf.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/one.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/one.inf.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/one.inf.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/one.num.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/one.num.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/one.num.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/one.num.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/one.sup.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/one.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/one.sup.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/one.sup.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oneeighth.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oneeighth.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oneeighth.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oneeighth.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/onefifth.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/onefifth.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/onefifth.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/onefifth.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/onehalf.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/onehalf.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/onehalf.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/onehalf.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/onequarter.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/onequarter.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/onequarter.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/onequarter.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/onesixth.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/onesixth.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/onesixth.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/onesixth.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/onethird.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/onethird.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/onethird.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/onethird.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oogonek.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oogonek.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oogonek.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ordfeminine.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ordfeminine.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ordfeminine.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ordfeminine.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ordmasculine.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ordmasculine.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ordmasculine.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ordmasculine.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oslash.bar.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oslash.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oslash.bar.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oslash.bar.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oslash.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oslash.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oslash.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/oslash.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/otilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/otilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/otilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/otilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/p.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/p.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/p.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/p.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/paragraph.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/paragraph.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/paragraph.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/paragraph.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/parenleft.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/parenleft.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/parenleft.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/parenleft.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/parenright.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/parenright.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/parenright.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/parenright.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/percent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/percent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/percent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/percent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/percent_percent.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/percent_percent.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/percent_percent.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/percent_percent.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_equal.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_equal.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_equal.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_hyphen.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_hyphen.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_equal.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_equal.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_equal.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_less.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_less.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_less.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_period.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_period.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_period.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_period.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_question.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_question.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_question.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_question.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/periodcentered.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/periodcentered.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/periodcentered.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/periodcentered.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/peso.bar.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/peso.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/peso.bar.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/peso.bar.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/peso.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/peso.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/peso.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/peso.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_plus.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_plus.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_plus.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_plus.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_plus_plus.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_plus_plus.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_plus_plus.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_plus_plus.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plusminus.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plusminus.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plusminus.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plusminus.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/primemod.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/primemod.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/primemod.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/primemod.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/published.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/published.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/published.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/published.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/q.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/q.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/q.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/q.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_colon.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_colon.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_colon.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_equal.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_equal.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_equal.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_period.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_period.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_period.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_period.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_question.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_question.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_question.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_question.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/questiondown.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/questiondown.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/questiondown.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/questiondown.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotedbl.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotedbl.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotedbl.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotedbl.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotedblbase.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotedblbase.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotedblbase.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotedblbase.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotedblleft.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotedblleft.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotedblleft.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotedblleft.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotedblright.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotedblright.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotedblright.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotedblright.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quoteleft.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quoteleft.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quoteleft.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quoteleft.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quoteright.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quoteright.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quoteright.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quoteright.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotesinglbase.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotesinglbase.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotesinglbase.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotesinglbase.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotesingle.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotesingle.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotesingle.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotesingle.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/r.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/r.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/r.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/r.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/racute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/racute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/racute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/racute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rcaron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rcaron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rcaron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rcommaaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rcommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rcommaaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rcommaaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rdotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rdotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rdotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rdotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rdotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rdotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rdotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/registered.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/registered.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/registered.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/registered.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/righteighthblock.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/righteighthblock.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/righteighthblock.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/righteighthblock.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/righthalfblock.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/righthalfblock.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/righthalfblock.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/righthalfblock.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftupheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftupheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftupheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ring.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ring.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ring.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ring.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ringcmb.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ringcmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ringcmb.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ringcmb.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ringcmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ringcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ringcmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ringcmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ringhalfleft.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ringhalfleft.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ringhalfleft.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ringhalfleft.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ringhalfright.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ringhalfright.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ringhalfright.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ringhalfright.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rlinebelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rlinebelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rlinebelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rmacrondotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rmacrondotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rmacrondotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rmacrondotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/s.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/s.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/s.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/s.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/sacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/sacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/sacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/sacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/scaron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/scaron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/scaron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/scaron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/scedilla.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/scedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/scedilla.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/scedilla.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/schwa.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/schwa.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/schwa.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/schwa.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/scircumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/scircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/scircumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/scircumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/scommaaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/scommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/scommaaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/scommaaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/sdotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/sdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/sdotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/sdotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/section.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/section.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/section.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/section.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/semicolon.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/semicolon.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/semicolon.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/semicolon.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/semicolon_semicolon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/semicolon_semicolon.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/semicolon_semicolon.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/servicemark.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/servicemark.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/servicemark.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/servicemark.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seven.den.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seven.den.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seven.den.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seven.den.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seven.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seven.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seven.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seven.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seven.inf.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seven.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seven.inf.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seven.inf.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seven.num.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seven.num.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seven.num.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seven.num.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seven.sup.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seven.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seven.sup.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seven.sup.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seveneighths.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seveneighths.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seveneighths.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/seveneighths.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/six.den.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/six.den.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/six.den.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/six.den.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/six.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/six.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/six.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/six.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/six.inf.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/six.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/six.inf.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/six.inf.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/six.num.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/six.num.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/six.num.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/six.num.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/six.sup.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/six.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/six.sup.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/six.sup.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_asterisk.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_asterisk.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_asterisk.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_asterisk.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_backslash.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_backslash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_backslash.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_backslash.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_equal.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_equal.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_equal.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_equal.start.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_equal.start.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_equal.start.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_greater.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_greater.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_greater.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_equal.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_equal.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_equal.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_equal.start.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_equal.start.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_equal.start.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_slash.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_slash.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_slash.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/space.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/space.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/space.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/space.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/sterling.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/sterling.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/sterling.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/sterling.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/t.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/t.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/t.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/t.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tbar.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tbar.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tbar.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tbar.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tcaron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tcaron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tcaron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tcedilla.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tcedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tcedilla.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tcedilla.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tcircumflexbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tcircumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tcircumflexbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tcircumflexbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tcommaaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tcommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tcommaaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tcommaaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tdotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tdotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tdotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/thorn.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/thorn.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/thorn.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/thorn.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/three.den.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/three.den.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/three.den.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/three.den.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/three.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/three.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/three.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/three.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/three.inf.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/three.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/three.inf.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/three.inf.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/three.num.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/three.num.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/three.num.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/three.num.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/three.sup.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/three.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/three.sup.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/three.sup.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/threeeighths.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/threeeighths.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/threeeighths.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/threeeighths.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/threefifths.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/threefifths.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/threefifths.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/threefifths.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/threequarters.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/threequarters.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/threequarters.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/threequarters.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tildecmb.cap.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tildecmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tildecmb.cap.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tildecmb.cap.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tildecmb.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tildecmb.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tildecmb.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tildecmb.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tlinebelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tlinebelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/tlinebelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/trademark.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/trademark.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/trademark.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/trademark.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/two.den.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/two.den.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/two.den.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/two.den.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/two.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/two.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/two.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/two.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/two.inf.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/two.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/two.inf.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/two.inf.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/two.num.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/two.num.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/two.num.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/two.num.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/two.sup.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/two.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/two.sup.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/two.sup.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/twodotleader.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/twodotleader.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/twodotleader.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/twodotleader.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/twofifths.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/twofifths.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/twofifths.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/twofifths.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/twothirds.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/twothirds.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/twothirds.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/twothirds.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/u.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/u.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/u.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/u.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ubreve.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ubreve.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ubreve.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ubreve.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ucaron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ucaron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ucaron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ucaron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ucircumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ucircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ucircumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ucircumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udieresis.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udieresis.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udieresis.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udieresisacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udieresisacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udieresisacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udieresisacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udieresiscaron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udieresiscaron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udieresiscaron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udieresiscaron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udieresisgrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udieresisgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udieresisgrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udieresisgrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udieresismacron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udieresismacron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udieresismacron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udieresismacron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/udotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ugrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ugrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ugrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ugrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhorn.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhorn.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhorn.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhorn.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhornacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhornacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhornacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhornacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhorndotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhorndotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhorndotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhorndotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhorngrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhorngrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhorngrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhorngrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhornhookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhornhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhornhookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhornhookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhorntilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhorntilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhorntilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhorntilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhungarumlaut.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhungarumlaut.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhungarumlaut.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uhungarumlaut.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/umacron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/umacron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/umacron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/umacron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.end.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.end.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.end.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.end.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.middle.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.middle.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.middle.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.start.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.start.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.start.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.start.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore_bar_underscore.m.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore_bar_underscore.m.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore_bar_underscore.m.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni00A_0.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni00A_0.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni00A_0.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni00A_0.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni0326.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni0326.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni0326.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni0326.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni1E_9E_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni1E_9E_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni1E_9E_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni1E_9E_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2011.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2011.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2011.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2011.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni20B_9.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni20B_9.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni20B_9.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni20B_9.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni20B_A_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni20B_A_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni20B_A_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni20B_A_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni20B_D_.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni20B_D_.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni20B_D_.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni20B_D_.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2610.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2610.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2610.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2610.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2611.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2611.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2611.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2611.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2612.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2612.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2612.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2612.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2713.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2713.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2713.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2713.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniA_788.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniA_788.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniA_788.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniA_788.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_0.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_0.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_0.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_0.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_1.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_1.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_1.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_1.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_2.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_2.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_2.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_2.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_0.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_0.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_0.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_0.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_1.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_1.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_1.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_1.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_2.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_2.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_2.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_2.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_3.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_3.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_3.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_3.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uogonek.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uogonek.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uogonek.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblhorzsngbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblhorzsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblhorzsngbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblhorzsngbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblleftsngbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblleftsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblleftsngbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblleftsngbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblrightsngbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblrightsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblrightsngbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblrightsngbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upeighthblock.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upeighthblock.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upeighthblock.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upeighthblock.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uphalfblock.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uphalfblock.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uphalfblock.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uphalfblock.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyhorzlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyhorzlightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyhorzlightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyleftlightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyleftlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyleftlightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyleftlightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyrightlightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyrightlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyrightlightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyrightlightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftdnrightquadrant.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftdnrightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftdnrightquadrant.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftdnrightquadrant.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftquadrant.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftquadrant.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftquadrant.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplighthorzheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplighthorzheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplighthorzheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplighthorzheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightleftdnheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightleftdnheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightleftdnheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightleftheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightleftheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightleftheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightleftheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightrightdnheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightrightdnheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightrightdnheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightrightheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightrightheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightrightheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightrightheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightdnleftquadrant.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightdnleftquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightdnleftquadrant.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightdnleftquadrant.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightquadrant.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightquadrant.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightquadrant.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsnghorzdblbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsnghorzdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsnghorzdblbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsnghorzdblbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsngleftdblbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsngleftdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsngleftdblbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsngleftdblbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsngrightdblbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsngrightdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsngrightdblbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsngrightdblbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uring.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uring.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uring.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uring.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/utilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/utilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/utilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/utilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/v.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/v.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/v.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/v.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vdotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vdotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vdotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblhorzsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblhorzsngbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblhorzsngbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblleftsngbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblleftsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblleftsngbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblleftsngbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblrightsngbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblrightsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblrightsngbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblrightsngbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyleftlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyleftlightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyleftlightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyrightlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyrightlightbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyrightlightbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/verticallinelowmod.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/verticallinelowmod.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/verticallinelowmod.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/verticallinelowmod.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/verticallinemod.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/verticallinemod.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/verticallinemod.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/verticallinemod.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlighthorzheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlighthorzheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlighthorzheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlightleftheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlightleftheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlightleftheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlightleftheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlightrightheavybxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlightrightheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlightrightheavybxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlightrightheavybxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsnghorzdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsnghorzdblbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsnghorzdblbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsngleftdblbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsngleftdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsngleftdblbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsngleftdblbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsngrightdblbxd.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsngrightdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsngrightdblbxd.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsngrightdblbxd.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/w.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/w.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/w.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/w.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/w_w_w.liga.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/w_w_w.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/w_w_w.liga.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/w_w_w.liga.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/wacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/wacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/wacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/wacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/wcircumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/wcircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/wcircumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/wcircumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/wdieresis.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/wdieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/wdieresis.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/wdieresis.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/wgrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/wgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/wgrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/wgrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/won.bar.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/won.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/won.bar.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/won.bar.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/won.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/won.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/won.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/won.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/x.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/x.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/x.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/x.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/xdieresis.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/xdieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/xdieresis.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/xdieresis.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/y.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/y.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/y.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/y.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/yacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/yacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/yacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/yacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ycircumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ycircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ycircumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ycircumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ydieresis.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ydieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ydieresis.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ydieresis.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ydotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ydotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ydotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ydotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ydotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ydotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ydotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ydotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/yen.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/yen.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/yen.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/yen.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ygrave.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ygrave.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ygrave.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ygrave.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/yhookabove.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/yhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/yhookabove.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/yhookabove.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ymacron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ymacron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ymacron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ymacron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ytilde.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ytilde.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ytilde.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ytilde.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/z.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/z.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/z.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/z.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zacute.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zacute.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zacute.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zacute.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zcaron.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zcaron.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zcaron.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zcircumflex.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zcircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zcircumflex.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zcircumflex.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zdotaccent.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zdotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zdotaccent.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zdotaccent.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zdotbelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zdotbelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zdotbelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zero.den.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zero.den.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zero.den.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zero.den.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zero.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zero.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zero.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zero.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zero.inf.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zero.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zero.inf.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zero.inf.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zero.num.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zero.num.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zero.num.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zero.num.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zero.sup.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zero.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zero.sup.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zero.sup.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zlinebelow.glif b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zlinebelow.glif rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/glyphs/zlinebelow.glif diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/layercontents.plist b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/layercontents.plist similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/layercontents.plist rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/layercontents.plist diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/lib.plist b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/lib.plist similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/lib.plist rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/lib.plist diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/metainfo.plist b/sources/main/IntelOneMono-BoldItalic-mstr.ufo/metainfo.plist similarity index 100% rename from sources/masters/IntelOneMono-BoldItalic-mstr.ufo/metainfo.plist rename to sources/main/IntelOneMono-BoldItalic-mstr.ufo/metainfo.plist diff --git a/sources/masters/IntelOneMono-Italic.designspace b/sources/main/IntelOneMono-Italic.designspace similarity index 100% rename from sources/masters/IntelOneMono-Italic.designspace rename to sources/main/IntelOneMono-Italic.designspace diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/features.fea b/sources/main/IntelOneMono-Light-mstr.ufo/features.fea similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/features.fea rename to sources/main/IntelOneMono-Light-mstr.ufo/features.fea diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/fontinfo.plist b/sources/main/IntelOneMono-Light-mstr.ufo/fontinfo.plist similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/fontinfo.plist rename to sources/main/IntelOneMono-Light-mstr.ufo/fontinfo.plist diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_E_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_E_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_E_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_E_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_acute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_acute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_acute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_breve.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_breve.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_breve.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_breveacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_breveacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_breveacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_breveacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_brevedotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_brevedotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_brevedotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_brevedotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_brevegrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_brevegrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_brevegrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_brevegrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_brevehookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_brevehookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_brevehookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_brevehookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_brevetilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_brevetilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_brevetilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_brevetilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_caron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_caron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_caron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflexacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflexacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflexacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflexdotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflexdotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflexgrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflexgrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflexgrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflexhookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflexhookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflextilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflextilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_circumflextilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_dieresis.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_dieresis.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_dieresis.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_dotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_dotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_dotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_dotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_grave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_grave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_grave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_hookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_hookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_hookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_macron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_macron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_macron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_ogonek.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_ogonek.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_ogonek.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_ring.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_ring.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_ring.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_ring.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_tilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/A_tilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/A_tilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/B_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/B_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/B_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/B_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/B_linebelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/B_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/B_linebelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/B_linebelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/C_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/C_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/C_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/C_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/C_acute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/C_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/C_acute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/C_acute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/C_caron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/C_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/C_caron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/C_caron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/C_cedilla.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/C_cedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/C_cedilla.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/C_cedilla.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/C_circumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/C_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/C_circumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/C_circumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/C_dotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/C_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/C_dotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/C_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/D_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/D_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/D_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/D_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/D_caron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/D_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/D_caron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/D_caron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/D_circumflexbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/D_circumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/D_circumflexbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/D_circumflexbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/D_croat.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/D_croat.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/D_croat.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/D_croat.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/D_dotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/D_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/D_dotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/D_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/D_linebelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/D_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/D_linebelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/D_linebelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_acute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_acute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_acute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_breve.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_breve.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_breve.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_caron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_caron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_caron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflexacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflexacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflexacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflexdotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflexdotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflexgrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflexgrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflexgrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflexhookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflexhookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflextilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflextilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_circumflextilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_dieresis.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_dieresis.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_dieresis.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_dotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_dotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_dotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_dotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_grave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_grave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_grave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_hookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_hookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_hookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_macron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_macron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_macron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_ng.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_ng.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_ng.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_ng.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_ogonek.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_ogonek.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_ogonek.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_th.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_th.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_th.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_th.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_tilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_tilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_tilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_uro.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_uro.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/E_uro.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/E_uro.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/F_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/F_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/F_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/F_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/G_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/G_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/G_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/G_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/G_breve.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/G_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/G_breve.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/G_breve.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/G_caron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/G_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/G_caron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/G_caron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/G_circumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/G_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/G_circumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/G_circumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/G_commaaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/G_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/G_commaaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/G_commaaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/G_dotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/G_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/G_dotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/G_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/G_macron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/G_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/G_macron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/G_macron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/H_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/H_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/H_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/H_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/H_bar.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/H_bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/H_bar.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/H_bar.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/H_brevebelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/H_brevebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/H_brevebelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/H_brevebelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/H_cedilla.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/H_cedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/H_cedilla.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/H_cedilla.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/H_circumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/H_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/H_circumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/H_circumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/H_dotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/H_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/H_dotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/H_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_acute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_acute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_acute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_breve.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_breve.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_breve.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_caron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_caron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_caron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_circumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_circumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_circumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_dieresis.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_dieresis.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_dieresis.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_dotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_dotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_dotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_dotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_grave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_grave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_grave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_hookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_hookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_hookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_macron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_macron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_macron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_ogonek.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_ogonek.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_ogonek.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_tilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/I_tilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/I_tilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/J_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/J_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/J_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/J_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/J_circumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/J_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/J_circumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/J_circumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/K_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/K_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/K_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/K_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/K_commaaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/K_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/K_commaaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/K_commaaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/K_dotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/K_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/K_dotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/K_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/K_linebelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/K_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/K_linebelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/K_linebelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_.dot.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/L_.dot.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_.dot.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/L_.dot.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/L_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/L_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_acute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/L_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_acute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/L_acute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_caron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/L_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_caron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/L_caron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_circumflexbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/L_circumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_circumflexbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/L_circumflexbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_commaaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/L_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_commaaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/L_commaaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_dotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/L_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_dotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/L_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_linebelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/L_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_linebelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/L_linebelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_macrondotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/L_macrondotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_macrondotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/L_macrondotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_slash.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/L_slash.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_slash.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/L_slash.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/M_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/M_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/M_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/M_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/M_acute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/M_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/M_acute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/M_acute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/M_dotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/M_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/M_dotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/M_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/M_dotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/M_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/M_dotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/M_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/N_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/N_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/N_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/N_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/N_acute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/N_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/N_acute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/N_acute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/N_caron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/N_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/N_caron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/N_caron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/N_circumflexbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/N_circumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/N_circumflexbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/N_circumflexbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/N_commaaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/N_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/N_commaaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/N_commaaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/N_dotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/N_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/N_dotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/N_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/N_dotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/N_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/N_dotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/N_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/N_grave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/N_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/N_grave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/N_grave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/N_linebelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/N_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/N_linebelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/N_linebelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/N_tilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/N_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/N_tilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/N_tilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_E_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_E_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_E_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_E_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_acute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_acute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_acute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_breve.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_breve.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_breve.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_caron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_caron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_caron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflexacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflexacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflexacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflexdotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflexdotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflexgrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflexgrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflexgrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflexhookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflexhookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflextilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflextilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_circumflextilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_dieresis.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_dieresis.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_dieresis.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_dotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_dotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_dotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_dotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_grave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_grave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_grave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_hookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_hookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_hookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_horn.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_horn.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_horn.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_horn.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_hornacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_hornacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_hornacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_hornacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_horndotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_horndotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_horndotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_horndotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_horngrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_horngrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_horngrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_horngrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_hornhookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_hornhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_hornhookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_hornhookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_horntilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_horntilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_horntilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_horntilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_hungarumlaut.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_hungarumlaut.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_hungarumlaut.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_hungarumlaut.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_macron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_macron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_macron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_ogonek.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_ogonek.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_ogonek.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_slash.bar.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_slash.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_slash.bar.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_slash.bar.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_slash.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_slash.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_slash.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_slash.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_tilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/O_tilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/O_tilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/P_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/P_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/P_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/P_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Q_.bar.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Q_.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Q_.bar.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Q_.bar.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Q_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Q_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Q_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Q_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/R_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/R_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/R_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/R_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/R_acute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/R_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/R_acute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/R_acute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/R_caron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/R_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/R_caron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/R_caron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/R_commaaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/R_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/R_commaaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/R_commaaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/R_dotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/R_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/R_dotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/R_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/R_dotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/R_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/R_dotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/R_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/R_linebelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/R_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/R_linebelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/R_linebelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/R_macrondotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/R_macrondotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/R_macrondotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/R_macrondotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/S_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/S_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/S_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/S_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/S_acute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/S_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/S_acute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/S_acute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/S_caron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/S_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/S_caron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/S_caron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/S_cedilla.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/S_cedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/S_cedilla.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/S_cedilla.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/S_chwa.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/S_chwa.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/S_chwa.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/S_chwa.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/S_circumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/S_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/S_circumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/S_circumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/S_commaaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/S_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/S_commaaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/S_commaaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/S_dotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/S_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/S_dotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/S_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/T_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/T_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/T_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/T_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/T_bar.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/T_bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/T_bar.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/T_bar.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/T_caron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/T_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/T_caron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/T_caron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/T_cedilla.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/T_cedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/T_cedilla.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/T_cedilla.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/T_circumflexbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/T_circumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/T_circumflexbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/T_circumflexbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/T_commaaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/T_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/T_commaaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/T_commaaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/T_dotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/T_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/T_dotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/T_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/T_horn.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/T_horn.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/T_horn.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/T_horn.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/T_linebelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/T_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/T_linebelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/T_linebelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_acute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_acute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_acute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_breve.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_breve.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_breve.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_caron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_caron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_caron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_circumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_circumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_circumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_dieresis.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_dieresis.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_dieresis.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_dieresisacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_dieresisacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_dieresisacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_dieresisacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_dieresiscaron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_dieresiscaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_dieresiscaron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_dieresiscaron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_dieresisgrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_dieresisgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_dieresisgrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_dieresisgrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_dieresismacron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_dieresismacron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_dieresismacron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_dieresismacron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_dotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_dotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_grave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_grave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_grave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_hookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_hookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_hookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_horn.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_horn.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_horn.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_horn.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_hornacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_hornacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_hornacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_hornacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_horndotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_horndotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_horndotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_horndotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_horngrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_horngrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_horngrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_horngrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_hornhookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_hornhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_hornhookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_hornhookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_horntilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_horntilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_horntilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_horntilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_hungarumlaut.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_hungarumlaut.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_hungarumlaut.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_hungarumlaut.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_macron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_macron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_macron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_ogonek.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_ogonek.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_ogonek.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_ring.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_ring.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_ring.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_ring.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_tilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/U_tilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/U_tilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/V_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/V_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/V_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/V_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/V_dotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/V_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/V_dotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/V_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/W_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/W_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/W_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/W_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/W_acute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/W_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/W_acute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/W_acute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/W_circumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/W_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/W_circumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/W_circumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/W_dieresis.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/W_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/W_dieresis.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/W_dieresis.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/W_grave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/W_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/W_grave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/W_grave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/X_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/X_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/X_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/X_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/X_dieresis.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/X_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/X_dieresis.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/X_dieresis.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Y_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Y_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Y_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Y_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Y_acute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Y_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Y_acute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Y_acute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Y_circumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Y_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Y_circumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Y_circumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Y_dieresis.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Y_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Y_dieresis.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Y_dieresis.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Y_dotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Y_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Y_dotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Y_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Y_dotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Y_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Y_dotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Y_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Y_grave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Y_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Y_grave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Y_grave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Y_hookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Y_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Y_hookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Y_hookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Y_macron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Y_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Y_macron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Y_macron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Y_tilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Y_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Y_tilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Y_tilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Z_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Z_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Z_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Z_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Z_acute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Z_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Z_acute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Z_acute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Z_caron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Z_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Z_caron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Z_caron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Z_circumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Z_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Z_circumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Z_circumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Z_dotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Z_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Z_dotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Z_dotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Z_dotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Z_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Z_dotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Z_dotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Z_linebelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Z_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/Z_linebelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/Z_linebelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/_notdef.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/_notdef.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/_notdef.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/_notdef.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/a.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/a.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/a.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/a.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/aacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/aacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/aacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/aacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/abreve.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/abreve.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/abreve.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/abreve.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/abreveacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/abreveacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/abreveacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/abreveacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/abrevedotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/abrevedotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/abrevedotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/abrevedotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/abrevegrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/abrevegrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/abrevegrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/abrevegrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/abrevehookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/abrevehookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/abrevehookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/abrevehookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/abrevetilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/abrevetilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/abrevetilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/abrevetilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/acaron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/acaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/acaron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/acaron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/acircumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/acircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/acircumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/acircumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/acircumflexacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/acircumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/acircumflexacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/acircumflexacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/acircumflexdotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/acircumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/acircumflexdotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/acircumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/acircumflexgrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/acircumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/acircumflexgrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/acircumflexgrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/acircumflexhookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/acircumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/acircumflexhookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/acircumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/acircumflextilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/acircumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/acircumflextilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/acircumflextilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/acute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/acute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/acute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/acute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/acutecmb.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/acutecmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/acutecmb.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/acutecmb.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/acutecmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/acutecmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/acutecmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/acutecmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/adieresis.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/adieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/adieresis.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/adieresis.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/adotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/adotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/adotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/adotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/adotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/adotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/adotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/adotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ae.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ae.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ae.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ae.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/agrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/agrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/agrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/agrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ahookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ahookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ahookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ahookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/amacron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/amacron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/amacron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/amacron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ampersand.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ampersand.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ampersand.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ampersand.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ampersand_ampersand.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ampersand_ampersand.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ampersand_ampersand.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/aogonek.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/aogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/aogonek.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/aogonek.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/apostrophemod.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/apostrophemod.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/apostrophemod.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/apostrophemod.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/approxequal.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/approxequal.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/approxequal.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/approxequal.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/aring.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/aring.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/aring.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/aring.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadleft.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadleft.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadleft.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadleft.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadleftopen.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadleftopen.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadleftopen.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadleftopen.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadright.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadright.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadright.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadright.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadrightopen.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadrightopen.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadrightopen.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadrightopen.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciicircum.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asciicircum.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciicircum.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asciicircum.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciicircum_equal.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asciicircum_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciicircum_equal.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asciicircum_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_at.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_at.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_at.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_at.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asterisk.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asterisk.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_asterisk.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_asterisk.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_asterisk.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_slash.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_slash.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_slash.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/at.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/at.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/at.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/at.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/atilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/atilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/atilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/atilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/b.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/b.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/b.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/b.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/backslash.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/backslash.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/backslash.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/backslash.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/backslash_slash.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/backslash_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/backslash_slash.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/backslash_slash.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bahtthai.bar.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bahtthai.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bahtthai.bar.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bahtthai.bar.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bahtthai.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bahtthai.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bahtthai.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bahtthai.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_bar.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_bar.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_equal.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_equal.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_equal.start.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_equal.start.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_equal.start.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_hyphen.start.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_braceright.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_braceright.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_braceright.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_braceright.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bracketright.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_bracketright.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bracketright.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_bracketright.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_equal.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_equal.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_equal.start.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_equal.start.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_equal.start.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_hyphen.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_hyphen.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_hyphen.start.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_hyphen.start.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bar_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/blinebelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/blinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/blinebelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/blinebelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/braceleft.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/braceleft.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/braceleft.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/braceleft.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/braceleft_bar.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/braceleft_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/braceleft_bar.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/braceleft_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/braceright.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/braceright.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/braceright.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/braceright.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bracketleft.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bracketleft.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bracketleft.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bracketleft.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bracketleft_bar.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bracketleft_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bracketleft_bar.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bracketleft_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bracketright.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bracketright.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bracketright.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bracketright.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bracketright_numbersign.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bracketright_numbersign.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bracketright_numbersign.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/breve.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/breve.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/breve.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/breve.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/breveacute.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/breveacute.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/breveacute.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/breveacute.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/breveacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/breveacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/breveacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/breveacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/brevebelowcmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/brevebelowcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/brevebelowcmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/brevebelowcmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/brevecmb.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/brevecmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/brevecmb.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/brevecmb.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/brevecmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/brevecmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/brevecmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/brevecmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/brevegrave.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/brevegrave.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/brevegrave.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/brevegrave.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/brevegrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/brevegrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/brevegrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/brevegrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/brevehook.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/brevehook.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/brevehook.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/brevehook.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/brevehook.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/brevehook.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/brevehook.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/brevehook.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/brevetilde.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/brevetilde.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/brevetilde.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/brevetilde.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/brevetilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/brevetilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/brevetilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/brevetilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bullet.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bullet.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bullet.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/bullet.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/c.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/c.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/c.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/c.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/cacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/cacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/cacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/cacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/caron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/caron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/caron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/caron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/caroncmb.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/caroncmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/caroncmb.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/caroncmb.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/caroncmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/caroncmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/caroncmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/caroncmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ccaron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ccaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ccaron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ccaron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ccedilla.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ccedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ccedilla.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ccedilla.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ccircumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ccircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ccircumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ccircumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/cdotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/cdotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/cdotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/cdotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/cedilla.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/cedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/cedilla.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/cedilla.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/cedillacmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/cedillacmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/cedillacmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/cedillacmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/cent.bar.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/cent.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/cent.bar.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/cent.bar.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/cent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/cent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/cent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/cent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflexacute.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflexacute.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflexacute.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflexacute.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflexacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflexacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflexacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflexbelowcmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflexbelowcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflexbelowcmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflexbelowcmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflexcmb.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflexcmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflexcmb.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflexcmb.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflexcmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflexcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflexcmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflexcmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflexgrave.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflexgrave.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflexgrave.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflexgrave.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflexgrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflexgrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflexgrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflexhook.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflexhook.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflexhook.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflexhook.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflexhook.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflexhook.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflexhook.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflexhook.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflextilde.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflextilde.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflextilde.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflextilde.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflextilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/circumflextilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/circumflextilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon.fig.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/colon.fig.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon.fig.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/colon.fig.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/colon.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/colon.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon_colon.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon_colon.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon_colon.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon_equal.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon_equal.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_equal.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/colon_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_equal.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/colon_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/colon_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/colon_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_less.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/colon_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_less.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/colon_less.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/comma.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/comma.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/comma.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/comma.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/commaaboverightcmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/commaaboverightcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/commaaboverightcmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/commaaboverightcmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/commaturnedabovecmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/commaturnedabovecmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/commaturnedabovecmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/commaturnedabovecmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/commaturnedmod.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/commaturnedmod.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/commaturnedmod.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/commaturnedmod.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/contents.plist b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/contents.plist similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/contents.plist rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/contents.plist diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/copyright.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/copyright.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/copyright.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/copyright.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/d.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/d.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/d.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/d.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dagger.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dagger.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dagger.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dagger.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/daggerdbl.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/daggerdbl.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/daggerdbl.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/daggerdbl.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/darkshade.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/darkshade.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/darkshade.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/darkshade.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbldnhorzbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dbldnhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbldnhorzbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dbldnhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbldnleftbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dbldnleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbldnleftbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dbldnleftbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbldnrightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dbldnrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbldnrightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dbldnrightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblhorzbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dblhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblhorzbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dblhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblprimemod.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dblprimemod.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblprimemod.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dblprimemod.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbluphorzbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dbluphorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbluphorzbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dbluphorzbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblupleftbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dblupleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblupleftbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dblupleftbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbluprightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dbluprightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbluprightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dbluprightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblvertbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dblvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblvertbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dblvertbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblverthorzbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dblverthorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblverthorzbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dblverthorzbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblvertleftbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dblvertleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblvertleftbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dblvertleftbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblvertrightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dblvertrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblvertrightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dblvertrightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dcaron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dcaron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dcaron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dcircumflexbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dcircumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dcircumflexbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dcircumflexbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dcroat.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dcroat.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dcroat.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dcroat.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ddotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ddotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ddotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ddotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/degree.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/degree.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/degree.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/degree.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresis.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresis.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresis.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresisacute.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresisacute.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresisacute.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresisacute.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresisacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresisacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresisacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresisacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresisbelowcmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresisbelowcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresisbelowcmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresisbelowcmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresiscaron.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresiscaron.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresiscaron.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresiscaron.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresiscaron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresiscaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresiscaron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresiscaron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresiscmb.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresiscmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresiscmb.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresiscmb.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresiscmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresiscmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresiscmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresiscmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresisgrave.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresisgrave.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresisgrave.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresisgrave.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresisgrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresisgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresisgrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresisgrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresismacron.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresismacron.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresismacron.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresismacron.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresismacron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresismacron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dieresismacron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dieresismacron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/divide.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/divide.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/divide.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/divide.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dlinebelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dlinebelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dlinebelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dndblhorzsngbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dndblhorzsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dndblhorzsngbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dndblhorzsngbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dndblleftsngbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dndblleftsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dndblleftsngbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dndblleftsngbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dndblrightsngbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dndblrightsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dndblrightsngbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dndblrightsngbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dneighthblock.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dneighthblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dneighthblock.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dneighthblock.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnfiveeighthsblock.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnfiveeighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnfiveeighthsblock.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnfiveeighthsblock.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnhalfblock.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnhalfblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnhalfblock.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnhalfblock.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyleftlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyleftlightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyleftlightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyrightlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyrightlightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyrightlightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnleftquadrant.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnleftquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnleftquadrant.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnleftquadrant.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnlighthorzheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlighthorzheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnlighthorzheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightleftheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnlightleftheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightleftheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnlightleftheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnlightleftupheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightleftupheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnlightleftupheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightrightheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnlightrightheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightrightheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnlightrightheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnlightrightupheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightrightupheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnlightrightupheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnquarterblock.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnquarterblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnquarterblock.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnquarterblock.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnrightquadrant.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnrightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnrightquadrant.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnrightquadrant.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnseveneighthsblock.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnseveneighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnseveneighthsblock.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnseveneighthsblock.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnsnghorzdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnsnghorzdblbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnsnghorzdblbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnsngleftdblbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnsngleftdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnsngleftdblbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnsngleftdblbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnsngrightdblbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnsngrightdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnsngrightdblbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnsngrightdblbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnthreeeighthsblock.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnthreeeighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnthreeeighthsblock.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnthreeeighthsblock.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnthreequartersblock.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnthreequartersblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnthreequartersblock.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dnthreequartersblock.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dollar.bar.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dollar.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dollar.bar.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dollar.bar.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dollar.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dollar.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dollar.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dollar.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dollar_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dollar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dollar_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dollar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dollar_greater.ligabar.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dollar_greater.ligabar.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dollar_greater.ligabar.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dollar_greater.ligabar.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dong.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dong.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dong.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dong.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dotaccentcmb.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dotaccentcmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dotaccentcmb.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dotaccentcmb.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dotaccentcmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dotaccentcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dotaccentcmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dotaccentcmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dotbelowcmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dotbelowcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dotbelowcmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dotbelowcmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dotlessi.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dotlessi.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dotlessi.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dotlessi.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dotlessj.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dotlessj.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dotlessj.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/dotlessj.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/e.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/e.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/e.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/e.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/eacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/eacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/eacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/eacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ebreve.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ebreve.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ebreve.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ebreve.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ecaron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ecaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ecaron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ecaron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflexacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflexacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflexacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflexdotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflexdotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflexgrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflexgrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflexgrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflexhookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflexhookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflextilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflextilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ecircumflextilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/edieresis.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/edieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/edieresis.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/edieresis.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/edotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/edotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/edotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/edotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/edotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/edotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/edotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/edotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/egrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/egrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/egrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/egrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ehookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ehookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ehookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ehookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/eight.den.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/eight.den.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/eight.den.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/eight.den.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/eight.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/eight.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/eight.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/eight.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/eight.inf.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/eight.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/eight.inf.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/eight.inf.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/eight.num.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/eight.num.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/eight.num.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/eight.num.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/eight.sup.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/eight.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/eight.sup.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/eight.sup.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ellipsis.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ellipsis.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ellipsis.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ellipsis.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/emacron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/emacron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/emacron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/emacron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/emdash.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/emdash.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/emdash.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/emdash.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/endash.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/endash.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/endash.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/endash.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/eng.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/eng.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/eng.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/eng.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/eogonek.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/eogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/eogonek.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/eogonek.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal.end.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal.end.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal.end.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal.middle.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal.middle.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal.middle.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal.start.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal.start.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal.start.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_asciitilde.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_asciitilde.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar.end.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar.end.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar.end.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar.end.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar.end.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar.end.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_equal.middle.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_equal.middle.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_equal.middle.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_colon_equal.middle.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_colon_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_colon_equal.middle.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_colon_equal.middle.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_equal.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_equal.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_equal_equal.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_equal_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_equal_equal.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_equal_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_exclam_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_exclam_equal.middle.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_exclam_equal.middle.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater.end.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater.end.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater.end.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_equal.middle.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_equal.middle.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_equal.middle.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater.end.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater.end.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater.end.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less.end.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_less.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less.end.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_less.end.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_less.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_equal.middle.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_equal.middle.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_equal.middle.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less.end.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less.end.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less.end.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less_equal.middle.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less_equal.middle.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash.end.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash.end.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash.end.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_equal.middle.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_equal.middle.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_equal.middle.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash.end.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash.end.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash.end.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/eth.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/eth.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/eth.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/eth.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/etilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/etilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/etilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/etilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/exclam.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/exclam.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/exclam_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_asciitilde.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/exclam_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_equal.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/exclam_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_equal.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/exclam_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/exclam_equal_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_equal_equal.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/exclam_equal_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_exclam.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/exclam_exclam.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_exclam.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/exclam_exclam.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/exclam_exclam_period.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_exclam_period.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/exclam_exclam_period.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclamdown.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/exclamdown.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclamdown.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/exclamdown.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/f.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/f.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/f.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/f.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/five.den.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/five.den.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/five.den.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/five.den.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/five.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/five.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/five.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/five.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/five.inf.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/five.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/five.inf.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/five.inf.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/five.num.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/five.num.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/five.num.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/five.num.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/five.sup.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/five.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/five.sup.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/five.sup.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/fiveeighths.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/fiveeighths.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/fiveeighths.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/fiveeighths.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/fivesixths.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/fivesixths.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/fivesixths.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/fivesixths.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/four.den.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/four.den.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/four.den.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/four.den.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/four.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/four.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/four.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/four.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/four.inf.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/four.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/four.inf.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/four.inf.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/four.num.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/four.num.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/four.num.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/four.num.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/four.sup.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/four.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/four.sup.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/four.sup.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/fourfifths.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/fourfifths.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/fourfifths.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/fourfifths.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/fracbar.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/fracbar.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/fracbar.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/fracbar.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/fraction.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/fraction.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/fraction.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/fraction.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/fullblock.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/fullblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/fullblock.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/fullblock.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/g.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/g.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/g.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/g.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/gbreve.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/gbreve.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/gbreve.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/gbreve.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/gcaron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/gcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/gcaron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/gcaron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/gcircumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/gcircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/gcircumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/gcircumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/gcommaaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/gcommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/gcommaaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/gcommaaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/gdotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/gdotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/gdotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/gdotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/germandbls.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/germandbls.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/germandbls.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/germandbls.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/gmacron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/gmacron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/gmacron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/gmacron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/grave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/grave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/grave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/grave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/gravecmb.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/gravecmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/gravecmb.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/gravecmb.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/gravecmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/gravecmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/gravecmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/gravecmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_colon.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_colon.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_colon.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.start.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.start.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.start.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_equal.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_equal.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_equal.start.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_equal.start.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_equal.start.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_hyphen.start.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen.start.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen.start.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greaterequal.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greaterequal.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greaterequal.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/greaterequal.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/guillemetleft.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/guillemetleft.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/guillemetleft.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/guillemetleft.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/guillemetright.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/guillemetright.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/guillemetright.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/guillemetright.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/guilsinglleft.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/guilsinglleft.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/guilsinglleft.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/guilsinglleft.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/guilsinglright.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/guilsinglright.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/guilsinglright.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/guilsinglright.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/h.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/h.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/h.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/h.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hbar.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hbar.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hbar.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hbar.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hbrevebelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hbrevebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hbrevebelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hbrevebelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hcedilla.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hcedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hcedilla.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hcedilla.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hcircumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hcircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hcircumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hcircumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hdotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hdotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hdotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavydbldashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydbldashhorzbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavydbldashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydbldashvertbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavydbldashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydbldashvertbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavydbldashvertbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydnbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavydnbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydnbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavydnbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydnhorzbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavydnhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydnhorzbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavydnhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydnleftbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavydnleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydnleftbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavydnleftbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydnrightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavydnrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydnrightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavydnrightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyhorzbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyhorzbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyleftbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyleftbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyleftbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyleftlightrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyleftlightrightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyleftlightrightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyquaddashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyquaddashvertbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyquaddashvertbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyrightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyrightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyrightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavytrpldashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavytrpldashvertbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavytrpldashvertbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyupbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyupbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyupbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyupbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyuphorzbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyuphorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyuphorzbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyuphorzbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyupleftbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyupleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyupleftbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyupleftbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyuplightdnbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyuplightdnbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyuplightdnbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyuplightdnbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyuprightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyuprightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyuprightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyuprightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyverthorzbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyverthorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyverthorzbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyverthorzbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertleftbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertleftbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertleftbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertrightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertrightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertrightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hlinebelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hlinebelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hlinebelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hookcmb.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hookcmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hookcmb.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hookcmb.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hookcmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hookcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hookcmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hookcmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/horizontalbar.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/horizontalbar.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/horizontalbar.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/horizontalbar.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hungarumlaut.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hungarumlaut.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hungarumlaut.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hungarumlaut.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hungarumlautcmb.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hungarumlautcmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hungarumlautcmb.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hungarumlautcmb.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hungarumlautcmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hungarumlautcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hungarumlautcmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hungarumlautcmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.end.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.end.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.end.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.middle.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.middle.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.start.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.start.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.start.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar.end.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar.end.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar.end.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar.end.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar.end.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater.end.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater.end.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater.end.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater.end.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater.end.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_hyphen.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less.end.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less.end.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less.end.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less.end.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less.end.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less.end.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/i.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/i.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/i.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/i.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/iacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/iacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/iacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/iacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ibreve.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ibreve.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ibreve.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ibreve.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/icaron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/icaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/icaron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/icaron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/icircumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/icircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/icircumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/icircumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/idieresis.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/idieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/idieresis.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/idieresis.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/idotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/idotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/idotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/idotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/idotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/idotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/idotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/idotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/igrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/igrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/igrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/igrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ihookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ihookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ihookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ihookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/imacron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/imacron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/imacron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/imacron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/iogonek.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/iogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/iogonek.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/iogonek.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/itilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/itilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/itilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/itilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/j.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/j.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/j.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/j.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/jcaron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/jcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/jcaron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/jcaron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/jcircumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/jcircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/jcircumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/jcircumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/k.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/k.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/k.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/k.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/kcommaaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/kcommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/kcommaaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/kcommaaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/kdotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/kdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/kdotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/kdotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/klinebelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/klinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/klinebelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/klinebelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/l.dot.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/l.dot.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/l.dot.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/l.dot.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/l.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/l.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/l.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/l.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/layerinfo.plist b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/layerinfo.plist similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/layerinfo.plist rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/layerinfo.plist diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lcaron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lcaron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lcaron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lcircumflexbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lcircumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lcircumflexbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lcircumflexbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lcommaaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lcommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lcommaaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lcommaaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ldotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ldotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ldotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ldotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lefteighthblock.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lefteighthblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lefteighthblock.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lefteighthblock.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftfiveeighthsblock.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftfiveeighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftfiveeighthsblock.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftfiveeighthsblock.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lefthalfblock.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lefthalfblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lefthalfblock.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lefthalfblock.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightupheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightupheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightupheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftquarterblock.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftquarterblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftquarterblock.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftquarterblock.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftseveneighthsblock.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftseveneighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftseveneighthsblock.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftseveneighthsblock.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftthreeeighthsblock.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftthreeeighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftthreeeighthsblock.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftthreeeighthsblock.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftthreequartersblock.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftthreequartersblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftthreequartersblock.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftthreequartersblock.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asterisk.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_asterisk.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asterisk.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_asterisk.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_asterisk_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asterisk_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_asterisk_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_bar.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_bar.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_bar.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_bar.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_colon.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_colon.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_colon.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar.ligabar.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar.ligabar.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar.ligabar.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar.ligabar.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.start.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.start.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.start.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_equal_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_equal_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal_less.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_equal_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal_less.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_equal_less.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen.start.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen.start.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen_less.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen_less.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen_less.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_less.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_equal.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_less_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_equal.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_less_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_equal.start.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_less_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_equal.start.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_less_equal.start.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_hyphen.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_less_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_hyphen.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_less_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_hyphen.start.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_less_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_hyphen.start.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_less_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_less.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_less_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_less.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_less_less.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_plus.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_plus.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_plus.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_plus.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_plus_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_plus_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_plus_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_plus_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_slash.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_slash.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_slash.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_slash_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_slash_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_slash_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/less_slash_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lessequal.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lessequal.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lessequal.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lessequal.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightarcdnleftbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightarcdnleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightarcdnleftbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightarcdnleftbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightarcdnrightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightarcdnrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightarcdnrightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightarcdnrightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightarcupleftbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightarcupleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightarcupleftbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightarcupleftbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightarcuprightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightarcuprightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightarcuprightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightarcuprightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightdbldashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdbldashhorzbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightdbldashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdbldashvertbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightdbldashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdbldashvertbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightdbldashvertbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdiagcrossbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightdiagcrossbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdiagcrossbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightdiagcrossbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdnbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightdnbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdnbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightdnbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdnhorzbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightdnhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdnhorzbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightdnhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdnleftbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightdnleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdnleftbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightdnleftbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdnrightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightdnrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdnrightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightdnrightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lighthorzbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lighthorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lighthorzbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lighthorzbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightleftbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightleftbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightleftbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightleftheavyrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightleftheavyrightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightleftheavyrightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightquaddashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightquaddashhorzbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightquaddashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightquaddashvertbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightquaddashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightquaddashvertbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightquaddashvertbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightrightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightrightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightrightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightshade.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightshade.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightshade.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightshade.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lighttrpldashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lighttrpldashvertbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lighttrpldashvertbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightupbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightupbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightupbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightupbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightupheavydnbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightupheavydnbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightupheavydnbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightupheavydnbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightuphorzbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightuphorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightuphorzbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightuphorzbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightupleftbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightupleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightupleftbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightupleftbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightuprightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightuprightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightuprightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightuprightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightvertbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightvertbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightvertbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightverthorzbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightverthorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightverthorzbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightverthorzbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightvertleftbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightvertleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightvertleftbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightvertleftbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightvertrightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightvertrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightvertrightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lightvertrightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ligspacer.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ligspacer.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ligspacer.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ligspacer.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/llinebelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/llinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/llinebelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/llinebelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lmacrondotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lmacrondotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lmacrondotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lmacrondotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lslash.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lslash.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lslash.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/lslash.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/m.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/m.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/m.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/m.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/macron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/macron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/macron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/macron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/macronbelowcmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/macronbelowcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/macronbelowcmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/macronbelowcmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/macroncmb.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/macroncmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/macroncmb.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/macroncmb.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/macroncmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/macroncmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/macroncmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/macroncmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/macronlowmod.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/macronlowmod.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/macronlowmod.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/macronlowmod.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/macute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/macute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/macute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/macute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/mdotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/mdotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/mdotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/mdotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/mdotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/mdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/mdotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/mdotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/mediumshade.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/mediumshade.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/mediumshade.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/mediumshade.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/middotcat.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/middotcat.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/middotcat.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/middotcat.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/middotcat.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/middotcat.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/middotcat.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/middotcat.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/minus.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/minus.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/minus.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/minus.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/mu.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/mu.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/mu.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/mu.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/multiply.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/multiply.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/multiply.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/multiply.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/n.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/n.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/n.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/n.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/nacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/nacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/nacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/nacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/naira.bar.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/naira.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/naira.bar.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/naira.bar.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/naira.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/naira.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/naira.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/naira.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ncaron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ncaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ncaron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ncaron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ncircumflexbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ncircumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ncircumflexbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ncircumflexbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ncommaaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ncommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ncommaaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ncommaaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ndotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ndotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ndotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ndotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ndotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ndotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ndotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ndotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ngrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ngrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ngrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ngrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/nine.den.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/nine.den.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/nine.den.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/nine.den.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/nine.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/nine.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/nine.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/nine.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/nine.inf.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/nine.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/nine.inf.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/nine.inf.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/nine.num.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/nine.num.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/nine.num.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/nine.num.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/nine.sup.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/nine.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/nine.sup.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/nine.sup.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/nlinebelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/nlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/nlinebelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/nlinebelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/notequal.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/notequal.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/notequal.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/notequal.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ntilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ntilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ntilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ntilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.end.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.end.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.end.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.middle.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.middle.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.middle.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.start.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.start.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.start.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_braceleft.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_braceleft.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_braceleft.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_colon.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_colon.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_colon.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_equal.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_equal.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_exclam.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_exclam.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_exclam.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_exclam.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_parenleft.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_parenleft.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_parenleft.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_question.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_question.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_question.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_question.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_underscore.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_underscore.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_underscore.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_underscore.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/o.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/o.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/o.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/o.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/oacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/oacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/oacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/oacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/obreve.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/obreve.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/obreve.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/obreve.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ocaron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ocaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ocaron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ocaron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflexacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflexacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflexacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflexdotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflexdotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflexgrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflexgrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflexgrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflexhookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflexhookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflextilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflextilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ocircumflextilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/odieresis.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/odieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/odieresis.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/odieresis.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/odotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/odotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/odotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/odotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/odotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/odotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/odotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/odotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/oe.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/oe.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/oe.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/oe.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ogonek.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ogonek.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ogonek.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ogonekcmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ogonekcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ogonekcmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ogonekcmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ograve.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ograve.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ograve.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ograve.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ohookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ohookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ohookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ohookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ohorn.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ohorn.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ohorn.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ohorn.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ohornacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ohornacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ohornacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ohornacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ohorndotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ohorndotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ohorndotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ohorndotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ohorngrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ohorngrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ohorngrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ohorngrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ohornhookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ohornhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ohornhookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ohornhookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ohorntilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ohorntilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ohorntilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ohorntilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ohungarumlaut.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ohungarumlaut.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ohungarumlaut.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ohungarumlaut.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/omacron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/omacron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/omacron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/omacron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/one.den.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/one.den.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/one.den.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/one.den.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/one.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/one.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/one.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/one.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/one.inf.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/one.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/one.inf.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/one.inf.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/one.num.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/one.num.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/one.num.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/one.num.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/one.sup.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/one.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/one.sup.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/one.sup.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/oneeighth.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/oneeighth.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/oneeighth.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/oneeighth.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/onefifth.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/onefifth.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/onefifth.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/onefifth.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/onehalf.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/onehalf.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/onehalf.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/onehalf.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/onequarter.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/onequarter.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/onequarter.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/onequarter.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/onesixth.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/onesixth.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/onesixth.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/onesixth.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/onethird.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/onethird.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/onethird.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/onethird.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/oogonek.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/oogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/oogonek.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/oogonek.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ordfeminine.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ordfeminine.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ordfeminine.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ordfeminine.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ordmasculine.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ordmasculine.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ordmasculine.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ordmasculine.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/oslash.bar.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/oslash.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/oslash.bar.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/oslash.bar.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/oslash.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/oslash.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/oslash.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/oslash.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/otilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/otilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/otilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/otilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/p.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/p.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/p.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/p.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/paragraph.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/paragraph.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/paragraph.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/paragraph.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/parenleft.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/parenleft.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/parenleft.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/parenleft.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/parenright.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/parenright.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/parenright.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/parenright.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/percent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/percent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/percent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/percent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/percent_percent.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/percent_percent.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/percent_percent.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/percent_percent.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/period.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/period.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_equal.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/period_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_equal.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/period_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_hyphen.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/period_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_hyphen.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/period_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_period.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/period_period.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_period.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/period_period.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_period_equal.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/period_period_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_period_equal.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/period_period_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_period_less.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/period_period_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_period_less.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/period_period_less.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_period_period.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/period_period_period.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_period_period.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/period_period_period.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_question.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/period_question.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_question.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/period_question.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/periodcentered.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/periodcentered.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/periodcentered.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/periodcentered.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/peso.bar.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/peso.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/peso.bar.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/peso.bar.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/peso.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/peso.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/peso.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/peso.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/plus.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/plus.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/plus.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/plus.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/plus_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/plus_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/plus_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/plus_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/plus_plus.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/plus_plus.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/plus_plus.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/plus_plus.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/plus_plus_plus.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/plus_plus_plus.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/plus_plus_plus.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/plus_plus_plus.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/plusminus.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/plusminus.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/plusminus.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/plusminus.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/primemod.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/primemod.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/primemod.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/primemod.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/published.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/published.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/published.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/published.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/q.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/q.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/q.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/q.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/question.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/question.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question_colon.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/question_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question_colon.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/question_colon.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question_equal.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/question_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question_equal.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/question_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question_period.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/question_period.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question_period.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/question_period.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question_question.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/question_question.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question_question.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/question_question.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/questiondown.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/questiondown.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/questiondown.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/questiondown.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/quotedbl.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/quotedbl.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/quotedbl.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/quotedbl.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/quotedblbase.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/quotedblbase.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/quotedblbase.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/quotedblbase.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/quotedblleft.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/quotedblleft.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/quotedblleft.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/quotedblleft.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/quotedblright.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/quotedblright.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/quotedblright.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/quotedblright.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/quoteleft.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/quoteleft.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/quoteleft.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/quoteleft.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/quoteright.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/quoteright.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/quoteright.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/quoteright.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/quotesinglbase.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/quotesinglbase.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/quotesinglbase.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/quotesinglbase.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/quotesingle.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/quotesingle.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/quotesingle.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/quotesingle.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/r.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/r.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/r.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/r.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/racute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/racute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/racute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/racute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rcaron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rcaron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rcaron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rcommaaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rcommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rcommaaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rcommaaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rdotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rdotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rdotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rdotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rdotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rdotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rdotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/registered.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/registered.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/registered.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/registered.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/righteighthblock.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/righteighthblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/righteighthblock.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/righteighthblock.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/righthalfblock.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/righthalfblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/righthalfblock.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/righthalfblock.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftupheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftupheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftupheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ring.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ring.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ring.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ring.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ringcmb.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ringcmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ringcmb.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ringcmb.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ringcmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ringcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ringcmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ringcmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ringhalfleft.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ringhalfleft.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ringhalfleft.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ringhalfleft.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ringhalfright.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ringhalfright.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ringhalfright.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ringhalfright.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rlinebelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rlinebelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rlinebelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rmacrondotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rmacrondotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rmacrondotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/rmacrondotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/s.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/s.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/s.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/s.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/sacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/sacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/sacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/sacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/scaron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/scaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/scaron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/scaron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/scedilla.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/scedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/scedilla.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/scedilla.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/schwa.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/schwa.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/schwa.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/schwa.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/scircumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/scircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/scircumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/scircumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/scommaaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/scommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/scommaaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/scommaaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/sdotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/sdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/sdotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/sdotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/section.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/section.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/section.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/section.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/semicolon.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/semicolon.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/semicolon.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/semicolon.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/semicolon_semicolon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/semicolon_semicolon.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/semicolon_semicolon.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/servicemark.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/servicemark.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/servicemark.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/servicemark.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/seven.den.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/seven.den.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/seven.den.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/seven.den.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/seven.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/seven.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/seven.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/seven.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/seven.inf.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/seven.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/seven.inf.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/seven.inf.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/seven.num.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/seven.num.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/seven.num.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/seven.num.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/seven.sup.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/seven.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/seven.sup.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/seven.sup.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/seveneighths.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/seveneighths.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/seveneighths.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/seveneighths.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/six.den.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/six.den.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/six.den.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/six.den.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/six.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/six.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/six.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/six.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/six.inf.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/six.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/six.inf.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/six.inf.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/six.num.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/six.num.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/six.num.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/six.num.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/six.sup.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/six.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/six.sup.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/six.sup.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/slash.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/slash.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_asterisk.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/slash_asterisk.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_asterisk.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/slash_asterisk.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_backslash.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/slash_backslash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_backslash.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/slash_backslash.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_equal.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/slash_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_equal.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/slash_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_equal.start.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/slash_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_equal.start.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/slash_equal.start.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_greater.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/slash_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_greater.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/slash_greater.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_equal.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_equal.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_equal.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_equal.start.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_equal.start.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_equal.start.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_slash.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_slash.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_slash.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/space.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/space.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/space.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/space.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/sterling.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/sterling.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/sterling.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/sterling.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/t.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/t.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/t.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/t.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/tbar.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/tbar.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/tbar.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/tbar.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/tcaron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/tcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/tcaron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/tcaron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/tcedilla.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/tcedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/tcedilla.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/tcedilla.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/tcircumflexbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/tcircumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/tcircumflexbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/tcircumflexbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/tcommaaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/tcommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/tcommaaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/tcommaaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/tdotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/tdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/tdotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/tdotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/thorn.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/thorn.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/thorn.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/thorn.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/three.den.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/three.den.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/three.den.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/three.den.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/three.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/three.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/three.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/three.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/three.inf.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/three.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/three.inf.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/three.inf.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/three.num.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/three.num.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/three.num.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/three.num.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/three.sup.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/three.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/three.sup.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/three.sup.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/threeeighths.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/threeeighths.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/threeeighths.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/threeeighths.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/threefifths.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/threefifths.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/threefifths.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/threefifths.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/threequarters.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/threequarters.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/threequarters.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/threequarters.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/tilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/tilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/tilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/tildecmb.cap.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/tildecmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/tildecmb.cap.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/tildecmb.cap.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/tildecmb.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/tildecmb.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/tildecmb.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/tildecmb.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/tlinebelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/tlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/tlinebelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/tlinebelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/trademark.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/trademark.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/trademark.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/trademark.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/two.den.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/two.den.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/two.den.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/two.den.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/two.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/two.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/two.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/two.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/two.inf.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/two.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/two.inf.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/two.inf.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/two.num.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/two.num.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/two.num.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/two.num.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/two.sup.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/two.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/two.sup.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/two.sup.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/twodotleader.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/twodotleader.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/twodotleader.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/twodotleader.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/twofifths.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/twofifths.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/twofifths.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/twofifths.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/twothirds.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/twothirds.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/twothirds.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/twothirds.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/u.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/u.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/u.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/u.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ubreve.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ubreve.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ubreve.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ubreve.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ucaron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ucaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ucaron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ucaron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ucircumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ucircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ucircumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ucircumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/udieresis.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/udieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/udieresis.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/udieresis.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/udieresisacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/udieresisacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/udieresisacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/udieresisacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/udieresiscaron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/udieresiscaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/udieresiscaron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/udieresiscaron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/udieresisgrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/udieresisgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/udieresisgrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/udieresisgrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/udieresismacron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/udieresismacron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/udieresismacron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/udieresismacron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/udotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/udotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/udotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/udotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ugrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ugrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ugrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ugrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uhookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uhookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uhookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uhorn.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uhorn.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uhorn.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uhorn.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uhornacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uhornacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uhornacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uhornacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uhorndotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uhorndotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uhorndotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uhorndotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uhorngrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uhorngrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uhorngrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uhorngrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uhornhookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uhornhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uhornhookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uhornhookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uhorntilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uhorntilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uhorntilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uhorntilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uhungarumlaut.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uhungarumlaut.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uhungarumlaut.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uhungarumlaut.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/umacron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/umacron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/umacron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/umacron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore.end.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/underscore.end.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore.end.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/underscore.end.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/underscore.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/underscore.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore.middle.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/underscore.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore.middle.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/underscore.middle.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore.start.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/underscore.start.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore.start.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/underscore.start.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/underscore_bar_underscore.m.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore_bar_underscore.m.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/underscore_bar_underscore.m.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni00A_0.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni00A_0.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni00A_0.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni00A_0.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni0326.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni0326.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni0326.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni0326.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni1E_9E_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni1E_9E_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni1E_9E_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni1E_9E_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2011.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni2011.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2011.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni2011.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni20B_9.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni20B_9.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni20B_9.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni20B_9.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni20B_A_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni20B_A_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni20B_A_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni20B_A_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni20B_D_.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni20B_D_.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni20B_D_.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni20B_D_.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2610.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni2610.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2610.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni2610.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2611.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni2611.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2611.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni2611.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2612.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni2612.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2612.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni2612.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2713.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni2713.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2713.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uni2713.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniA_788.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uniA_788.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniA_788.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uniA_788.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_0.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_0.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_0.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_0.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_1.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_1.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_1.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_1.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_2.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_2.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_2.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_2.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_0.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_0.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_0.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_0.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_1.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_1.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_1.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_1.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_2.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_2.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_2.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_2.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_3.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_3.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_3.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_3.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uogonek.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uogonek.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uogonek.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/updblhorzsngbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/updblhorzsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/updblhorzsngbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/updblhorzsngbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/updblleftsngbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/updblleftsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/updblleftsngbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/updblleftsngbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/updblrightsngbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/updblrightsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/updblrightsngbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/updblrightsngbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upeighthblock.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upeighthblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upeighthblock.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upeighthblock.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uphalfblock.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uphalfblock.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uphalfblock.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uphalfblock.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upheavyhorzlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyhorzlightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upheavyhorzlightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyleftlightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upheavyleftlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyleftlightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upheavyleftlightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyrightlightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upheavyrightlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyrightlightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upheavyrightlightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftdnrightquadrant.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upleftdnrightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftdnrightquadrant.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upleftdnrightquadrant.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftquadrant.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upleftquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftquadrant.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upleftquadrant.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplighthorzheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uplighthorzheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplighthorzheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uplighthorzheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uplightleftdnheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightleftdnheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uplightleftdnheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightleftheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uplightleftheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightleftheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uplightleftheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uplightrightdnheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightrightdnheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uplightrightdnheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightrightheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uplightrightheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightrightheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uplightrightheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uprightdnleftquadrant.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uprightdnleftquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uprightdnleftquadrant.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uprightdnleftquadrant.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uprightquadrant.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uprightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uprightquadrant.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uprightquadrant.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upsnghorzdblbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upsnghorzdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upsnghorzdblbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upsnghorzdblbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upsngleftdblbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upsngleftdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upsngleftdblbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upsngleftdblbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upsngrightdblbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upsngrightdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upsngrightdblbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/upsngrightdblbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uring.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uring.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uring.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/uring.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/utilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/utilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/utilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/utilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/v.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/v.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/v.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/v.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vdotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vdotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vdotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertdblhorzsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertdblhorzsngbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertdblhorzsngbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertdblleftsngbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertdblleftsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertdblleftsngbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertdblleftsngbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertdblrightsngbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertdblrightsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertdblrightsngbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertdblrightsngbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyleftlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyleftlightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyleftlightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyrightlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyrightlightbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyrightlightbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/verticallinelowmod.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/verticallinelowmod.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/verticallinelowmod.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/verticallinelowmod.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/verticallinemod.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/verticallinemod.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/verticallinemod.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/verticallinemod.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertlighthorzheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertlighthorzheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertlighthorzheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertlightleftheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertlightleftheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertlightleftheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertlightleftheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertlightrightheavybxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertlightrightheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertlightrightheavybxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertlightrightheavybxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertsnghorzdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertsnghorzdblbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertsnghorzdblbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertsngleftdblbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertsngleftdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertsngleftdblbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertsngleftdblbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertsngrightdblbxd.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertsngrightdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertsngrightdblbxd.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/vertsngrightdblbxd.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/w.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/w.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/w.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/w.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/w_w_w.liga.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/w_w_w.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/w_w_w.liga.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/w_w_w.liga.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/wacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/wacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/wacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/wacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/wcircumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/wcircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/wcircumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/wcircumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/wdieresis.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/wdieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/wdieresis.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/wdieresis.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/wgrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/wgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/wgrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/wgrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/won.bar.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/won.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/won.bar.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/won.bar.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/won.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/won.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/won.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/won.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/x.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/x.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/x.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/x.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/xdieresis.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/xdieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/xdieresis.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/xdieresis.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/y.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/y.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/y.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/y.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/yacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/yacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/yacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/yacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ycircumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ycircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ycircumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ycircumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ydieresis.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ydieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ydieresis.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ydieresis.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ydotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ydotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ydotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ydotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ydotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ydotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ydotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ydotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/yen.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/yen.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/yen.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/yen.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ygrave.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ygrave.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ygrave.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ygrave.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/yhookabove.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/yhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/yhookabove.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/yhookabove.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ymacron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ymacron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ymacron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ymacron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ytilde.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ytilde.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ytilde.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/ytilde.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/z.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/z.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/z.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/z.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zacute.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zacute.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zacute.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zacute.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zcaron.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zcaron.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zcaron.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zcircumflex.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zcircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zcircumflex.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zcircumflex.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zdotaccent.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zdotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zdotaccent.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zdotaccent.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zdotbelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zdotbelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zdotbelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zero.den.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zero.den.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zero.den.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zero.den.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zero.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zero.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zero.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zero.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zero.inf.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zero.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zero.inf.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zero.inf.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zero.num.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zero.num.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zero.num.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zero.num.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zero.sup.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zero.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zero.sup.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zero.sup.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zlinebelow.glif b/sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/zlinebelow.glif rename to sources/main/IntelOneMono-Light-mstr.ufo/glyphs/zlinebelow.glif diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/layercontents.plist b/sources/main/IntelOneMono-Light-mstr.ufo/layercontents.plist similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/layercontents.plist rename to sources/main/IntelOneMono-Light-mstr.ufo/layercontents.plist diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/lib.plist b/sources/main/IntelOneMono-Light-mstr.ufo/lib.plist similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/lib.plist rename to sources/main/IntelOneMono-Light-mstr.ufo/lib.plist diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/metainfo.plist b/sources/main/IntelOneMono-Light-mstr.ufo/metainfo.plist similarity index 100% rename from sources/masters/IntelOneMono-Light-mstr.ufo/metainfo.plist rename to sources/main/IntelOneMono-Light-mstr.ufo/metainfo.plist diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/features.fea b/sources/main/IntelOneMono-LightItalic-mstr.ufo/features.fea similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/features.fea rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/features.fea diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/fontinfo.plist b/sources/main/IntelOneMono-LightItalic-mstr.ufo/fontinfo.plist similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/fontinfo.plist rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/fontinfo.plist diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_E_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_E_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_E_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_E_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_acute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_acute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_acute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_breve.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_breve.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_breve.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_breveacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_breveacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_breveacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_breveacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_brevedotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_brevedotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_brevedotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_brevedotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_brevegrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_brevegrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_brevegrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_brevegrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_brevehookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_brevehookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_brevehookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_brevehookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_brevetilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_brevetilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_brevetilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_brevetilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_caron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_caron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_caron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflexacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflexacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflexacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflexdotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflexdotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflexgrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflexgrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflexgrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflexhookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflexhookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflextilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflextilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_circumflextilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_dieresis.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_dieresis.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_dieresis.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_dotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_dotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_dotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_dotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_dotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_dotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_grave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_grave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_grave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_hookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_hookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_hookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_macron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_macron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_macron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_ogonek.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_ogonek.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_ogonek.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_ring.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_ring.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_ring.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_ring.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_tilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_tilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/A_tilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/B_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/B_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/B_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/B_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/B_linebelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/B_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/B_linebelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/B_linebelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_acute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_acute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_acute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_caron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_caron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_caron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_cedilla.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_cedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_cedilla.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_cedilla.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_circumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_circumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_circumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_dotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_dotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/C_dotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_caron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_caron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_caron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_circumflexbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_circumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_circumflexbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_circumflexbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_croat.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_croat.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_croat.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_croat.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_dotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_dotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_dotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_linebelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_linebelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/D_linebelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_acute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_acute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_acute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_breve.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_breve.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_breve.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_caron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_caron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_caron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflexacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflexacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflexacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflexdotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflexdotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflexgrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflexgrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflexgrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflexhookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflexhookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflextilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflextilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_circumflextilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_dieresis.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_dieresis.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_dieresis.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_dotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_dotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_dotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_dotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_dotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_dotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_grave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_grave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_grave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_hookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_hookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_hookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_macron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_macron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_macron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_ng.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_ng.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_ng.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_ng.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_ogonek.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_ogonek.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_ogonek.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_th.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_th.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_th.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_th.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_tilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_tilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_tilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_uro.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_uro.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_uro.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/E_uro.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/F_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/F_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/F_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/F_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_breve.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_breve.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_breve.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_caron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_caron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_caron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_circumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_circumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_circumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_commaaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_commaaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_commaaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_dotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_dotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_dotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_macron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_macron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/G_macron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_bar.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_bar.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_bar.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_bar.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_brevebelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_brevebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_brevebelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_brevebelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_cedilla.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_cedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_cedilla.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_cedilla.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_circumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_circumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_circumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_dotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_dotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/H_dotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_acute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_acute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_acute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_breve.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_breve.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_breve.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_caron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_caron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_caron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_circumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_circumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_circumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_dieresis.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_dieresis.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_dieresis.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_dotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_dotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_dotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_dotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_dotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_dotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_grave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_grave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_grave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_hookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_hookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_hookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_macron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_macron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_macron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_ogonek.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_ogonek.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_ogonek.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_tilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_tilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/I_tilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/J_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/J_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/J_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/J_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/J_circumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/J_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/J_circumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/J_circumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/K_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/K_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/K_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/K_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/K_commaaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/K_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/K_commaaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/K_commaaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/K_dotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/K_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/K_dotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/K_dotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/K_linebelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/K_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/K_linebelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/K_linebelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_.dot.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_.dot.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_.dot.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_.dot.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_acute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_acute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_acute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_caron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_caron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_caron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_circumflexbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_circumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_circumflexbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_circumflexbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_commaaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_commaaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_commaaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_dotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_dotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_dotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_linebelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_linebelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_linebelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_macrondotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_macrondotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_macrondotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_macrondotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_slash.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_slash.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_slash.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_slash.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/M_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/M_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/M_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/M_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/M_acute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/M_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/M_acute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/M_acute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/M_dotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/M_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/M_dotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/M_dotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/M_dotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/M_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/M_dotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/M_dotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_acute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_acute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_acute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_caron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_caron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_caron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_circumflexbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_circumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_circumflexbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_circumflexbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_commaaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_commaaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_commaaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_dotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_dotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_dotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_dotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_dotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_dotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_grave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_grave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_grave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_linebelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_linebelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_linebelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_tilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_tilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/N_tilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_E_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_E_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_E_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_E_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_acute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_acute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_acute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_breve.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_breve.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_breve.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_caron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_caron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_caron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflexacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflexacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflexacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflexdotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflexdotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflexgrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflexgrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflexgrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflexhookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflexhookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflextilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflextilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_circumflextilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_dieresis.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_dieresis.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_dieresis.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_dotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_dotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_dotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_dotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_dotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_dotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_grave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_grave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_grave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_hookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_hookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_hookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_horn.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_horn.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_horn.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_horn.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_hornacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_hornacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_hornacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_hornacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_horndotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_horndotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_horndotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_horndotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_horngrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_horngrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_horngrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_horngrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_hornhookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_hornhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_hornhookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_hornhookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_horntilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_horntilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_horntilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_horntilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_hungarumlaut.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_hungarumlaut.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_hungarumlaut.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_hungarumlaut.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_macron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_macron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_macron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_ogonek.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_ogonek.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_ogonek.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_slash.bar.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_slash.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_slash.bar.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_slash.bar.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_slash.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_slash.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_slash.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_slash.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_tilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_tilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/O_tilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/P_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/P_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/P_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/P_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Q_.bar.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Q_.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Q_.bar.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Q_.bar.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Q_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Q_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Q_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Q_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_acute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_acute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_acute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_caron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_caron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_caron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_commaaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_commaaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_commaaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_dotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_dotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_dotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_dotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_dotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_dotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_linebelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_linebelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_linebelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_macrondotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_macrondotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_macrondotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/R_macrondotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_acute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_acute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_acute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_caron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_caron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_caron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_cedilla.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_cedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_cedilla.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_cedilla.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_chwa.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_chwa.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_chwa.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_chwa.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_circumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_circumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_circumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_commaaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_commaaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_commaaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_dotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_dotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/S_dotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_bar.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_bar.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_bar.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_bar.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_caron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_caron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_caron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_cedilla.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_cedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_cedilla.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_cedilla.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_circumflexbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_circumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_circumflexbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_circumflexbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_commaaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_commaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_commaaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_commaaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_dotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_dotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_dotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_horn.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_horn.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_horn.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_horn.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_linebelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_linebelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/T_linebelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_acute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_acute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_acute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_breve.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_breve.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_breve.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_breve.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_caron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_caron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_caron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_circumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_circumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_circumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dieresis.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dieresis.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dieresis.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dieresisacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dieresisacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dieresisacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dieresisacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dieresiscaron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dieresiscaron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dieresiscaron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dieresiscaron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dieresisgrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dieresisgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dieresisgrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dieresisgrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dieresismacron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dieresismacron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dieresismacron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dieresismacron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_dotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_grave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_grave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_grave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_hookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_hookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_hookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_horn.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_horn.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_horn.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_horn.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_hornacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_hornacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_hornacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_hornacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_horndotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_horndotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_horndotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_horndotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_horngrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_horngrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_horngrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_horngrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_hornhookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_hornhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_hornhookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_hornhookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_horntilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_horntilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_horntilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_horntilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_hungarumlaut.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_hungarumlaut.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_hungarumlaut.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_hungarumlaut.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_macron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_macron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_macron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_ogonek.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_ogonek.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_ogonek.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_ring.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_ring.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_ring.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_ring.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_tilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_tilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/U_tilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/V_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/V_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/V_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/V_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/V_dotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/V_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/V_dotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/V_dotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/W_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/W_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/W_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/W_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/W_acute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/W_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/W_acute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/W_acute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/W_circumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/W_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/W_circumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/W_circumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/W_dieresis.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/W_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/W_dieresis.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/W_dieresis.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/W_grave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/W_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/W_grave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/W_grave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/X_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/X_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/X_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/X_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/X_dieresis.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/X_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/X_dieresis.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/X_dieresis.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_acute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_acute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_acute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_circumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_circumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_circumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_dieresis.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_dieresis.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_dieresis.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_dotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_dotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_dotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_dotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_dotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_dotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_grave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_grave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_grave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_grave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_hookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_hookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_hookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_hookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_macron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_macron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_macron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_macron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_tilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_tilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Y_tilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_acute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_acute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_acute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_acute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_caron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_caron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_caron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_caron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_circumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_circumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_circumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_dotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_dotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_dotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_dotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_dotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_dotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_dotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_linebelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_linebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_linebelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/Z_linebelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/_notdef.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/_notdef.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/_notdef.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/_notdef.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/a.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/a.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/a.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/a.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/aacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/aacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/aacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/aacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/abreve.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/abreve.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/abreve.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/abreve.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/abreveacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/abreveacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/abreveacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/abreveacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/abrevedotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/abrevedotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/abrevedotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/abrevedotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/abrevegrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/abrevegrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/abrevegrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/abrevegrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/abrevehookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/abrevehookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/abrevehookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/abrevehookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/abrevetilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/abrevetilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/abrevetilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/abrevetilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/acaron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/acaron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/acaron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/acaron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflexacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflexacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflexacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflexdotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflexdotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflexgrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflexgrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflexgrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflexhookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflexhookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflextilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflextilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/acircumflextilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/acute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/acute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/acute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/acute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/acutecmb.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/acutecmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/acutecmb.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/acutecmb.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/acutecmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/acutecmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/acutecmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/acutecmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/adieresis.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/adieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/adieresis.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/adieresis.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/adotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/adotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/adotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/adotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/adotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/adotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/adotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/adotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ae.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ae.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ae.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ae.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/agrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/agrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/agrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/agrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ahookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ahookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ahookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ahookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/amacron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/amacron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/amacron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/amacron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ampersand.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ampersand.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ampersand.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ampersand.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ampersand_ampersand.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ampersand_ampersand.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ampersand_ampersand.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/aogonek.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/aogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/aogonek.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/aogonek.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/apostrophemod.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/apostrophemod.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/apostrophemod.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/apostrophemod.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/approxequal.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/approxequal.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/approxequal.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/approxequal.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/aring.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/aring.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/aring.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/aring.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadleft.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadleft.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadleft.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadleft.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadleftopen.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadleftopen.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadleftopen.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadleftopen.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadright.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadright.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadright.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadright.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadrightopen.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadrightopen.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadrightopen.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadrightopen.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciicircum.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciicircum.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciicircum.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciicircum.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciicircum_equal.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciicircum_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciicircum_equal.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciicircum_equal.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_at.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_at.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_at.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_at.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_asterisk.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_asterisk.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_asterisk.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_slash.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_slash.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_slash.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/at.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/at.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/at.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/at.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/atilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/atilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/atilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/atilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/b.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/b.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/b.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/b.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/backslash.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/backslash.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/backslash.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/backslash.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/backslash_slash.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/backslash_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/backslash_slash.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/backslash_slash.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bahtthai.bar.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bahtthai.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bahtthai.bar.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bahtthai.bar.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bahtthai.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bahtthai.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bahtthai.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bahtthai.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_bar.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_bar.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_equal.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_equal.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_equal.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_equal.start.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_equal.start.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_equal.start.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_hyphen.start.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_braceright.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_braceright.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_braceright.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_braceright.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bracketright.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bracketright.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bracketright.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bracketright.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_equal.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_equal.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_equal.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_equal.start.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_equal.start.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_equal.start.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_hyphen.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_hyphen.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_hyphen.start.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_hyphen.start.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/blinebelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/blinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/blinebelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/blinebelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/braceleft.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/braceleft.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/braceleft.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/braceleft.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/braceleft_bar.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/braceleft_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/braceleft_bar.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/braceleft_bar.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/braceright.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/braceright.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/braceright.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/braceright.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketleft.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketleft.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketleft.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketleft.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketleft_bar.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketleft_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketleft_bar.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketleft_bar.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketright.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketright.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketright.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketright.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketright_numbersign.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketright_numbersign.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketright_numbersign.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/breve.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/breve.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/breve.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/breve.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/breveacute.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/breveacute.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/breveacute.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/breveacute.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/breveacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/breveacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/breveacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/breveacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevebelowcmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevebelowcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevebelowcmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevebelowcmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevecmb.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevecmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevecmb.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevecmb.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevecmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevecmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevecmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevecmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevegrave.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevegrave.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevegrave.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevegrave.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevegrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevegrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevegrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevegrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevehook.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevehook.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevehook.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevehook.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevehook.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevehook.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevehook.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevehook.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevetilde.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevetilde.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevetilde.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevetilde.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevetilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevetilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevetilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/brevetilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bullet.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bullet.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bullet.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/bullet.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/c.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/c.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/c.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/c.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/cacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/cacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/cacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/cacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/caron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/caron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/caron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/caron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/caroncmb.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/caroncmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/caroncmb.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/caroncmb.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/caroncmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/caroncmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/caroncmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/caroncmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ccaron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ccaron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ccaron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ccaron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ccedilla.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ccedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ccedilla.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ccedilla.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ccircumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ccircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ccircumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ccircumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/cdotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/cdotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/cdotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/cdotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/cedilla.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/cedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/cedilla.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/cedilla.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/cedillacmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/cedillacmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/cedillacmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/cedillacmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/cent.bar.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/cent.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/cent.bar.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/cent.bar.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/cent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/cent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/cent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/cent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexacute.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexacute.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexacute.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexacute.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexbelowcmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexbelowcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexbelowcmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexbelowcmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexcmb.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexcmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexcmb.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexcmb.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexcmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexcmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexcmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexgrave.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexgrave.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexgrave.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexgrave.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexgrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexgrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexgrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexhook.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexhook.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexhook.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexhook.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexhook.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexhook.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexhook.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflexhook.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflextilde.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflextilde.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflextilde.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflextilde.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflextilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflextilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/circumflextilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon.fig.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon.fig.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon.fig.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon.fig.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon_colon.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon_colon.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon_colon.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon_equal.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon_equal.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon_equal.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_equal.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_equal.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_equal.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_less.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_less.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_less.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/comma.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/comma.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/comma.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/comma.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/commaaboverightcmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/commaaboverightcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/commaaboverightcmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/commaaboverightcmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/commaturnedabovecmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/commaturnedabovecmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/commaturnedabovecmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/commaturnedabovecmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/commaturnedmod.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/commaturnedmod.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/commaturnedmod.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/commaturnedmod.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/contents.plist b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/contents.plist similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/contents.plist rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/contents.plist diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/copyright.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/copyright.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/copyright.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/copyright.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/d.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/d.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/d.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/d.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dagger.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dagger.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dagger.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dagger.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/daggerdbl.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/daggerdbl.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/daggerdbl.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/daggerdbl.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/darkshade.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/darkshade.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/darkshade.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/darkshade.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnhorzbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnhorzbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnhorzbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnleftbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnleftbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnleftbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnrightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnrightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnrightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblhorzbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblhorzbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblhorzbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblprimemod.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblprimemod.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblprimemod.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblprimemod.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbluphorzbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbluphorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbluphorzbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbluphorzbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblupleftbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblupleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblupleftbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblupleftbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbluprightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbluprightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbluprightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbluprightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblverthorzbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblverthorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblverthorzbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblverthorzbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertleftbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertleftbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertleftbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertrightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertrightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertrightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dcaron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dcaron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dcaron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dcircumflexbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dcircumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dcircumflexbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dcircumflexbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dcroat.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dcroat.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dcroat.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dcroat.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ddotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ddotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ddotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ddotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/degree.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/degree.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/degree.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/degree.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresis.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresis.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresis.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresisacute.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresisacute.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresisacute.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresisacute.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresisacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresisacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresisacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresisacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresisbelowcmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresisbelowcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresisbelowcmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresisbelowcmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresiscaron.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresiscaron.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresiscaron.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresiscaron.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresiscaron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresiscaron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresiscaron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresiscaron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresiscmb.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresiscmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresiscmb.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresiscmb.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresiscmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresiscmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresiscmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresiscmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresisgrave.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresisgrave.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresisgrave.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresisgrave.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresisgrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresisgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresisgrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresisgrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresismacron.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresismacron.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresismacron.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresismacron.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresismacron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresismacron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresismacron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dieresismacron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/divide.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/divide.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/divide.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/divide.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dlinebelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dlinebelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dlinebelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblhorzsngbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblhorzsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblhorzsngbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblhorzsngbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblleftsngbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblleftsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblleftsngbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblleftsngbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblrightsngbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblrightsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblrightsngbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblrightsngbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dneighthblock.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dneighthblock.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dneighthblock.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dneighthblock.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnfiveeighthsblock.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnfiveeighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnfiveeighthsblock.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnfiveeighthsblock.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnhalfblock.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnhalfblock.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnhalfblock.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnhalfblock.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyleftlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyleftlightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyleftlightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyrightlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyrightlightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyrightlightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnleftquadrant.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnleftquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnleftquadrant.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnleftquadrant.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlighthorzheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlighthorzheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlighthorzheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightleftheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightleftheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightleftheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightleftheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightleftupheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightleftupheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightleftupheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightrightheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightrightheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightrightheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightrightheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightrightupheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightrightupheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightrightupheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnquarterblock.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnquarterblock.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnquarterblock.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnquarterblock.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnrightquadrant.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnrightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnrightquadrant.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnrightquadrant.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnseveneighthsblock.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnseveneighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnseveneighthsblock.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnseveneighthsblock.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsnghorzdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsnghorzdblbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsnghorzdblbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsngleftdblbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsngleftdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsngleftdblbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsngleftdblbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsngrightdblbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsngrightdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsngrightdblbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsngrightdblbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnthreeeighthsblock.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnthreeeighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnthreeeighthsblock.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnthreeeighthsblock.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnthreequartersblock.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnthreequartersblock.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnthreequartersblock.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnthreequartersblock.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar.bar.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar.bar.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar.bar.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar_greater.ligabar.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar_greater.ligabar.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar_greater.ligabar.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar_greater.ligabar.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dong.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dong.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dong.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dong.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotaccentcmb.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotaccentcmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotaccentcmb.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotaccentcmb.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotaccentcmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotaccentcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotaccentcmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotaccentcmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotbelowcmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotbelowcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotbelowcmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotbelowcmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotlessi.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotlessi.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotlessi.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotlessi.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotlessj.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotlessj.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotlessj.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/dotlessj.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/e.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/e.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/e.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/e.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/eacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/eacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/eacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/eacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ebreve.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ebreve.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ebreve.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ebreve.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecaron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecaron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecaron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecaron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflexacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflexacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflexacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflexdotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflexdotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflexgrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflexgrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflexgrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflexhookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflexhookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflextilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflextilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ecircumflextilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/edieresis.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/edieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/edieresis.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/edieresis.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/edotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/edotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/edotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/edotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/edotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/edotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/edotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/edotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/egrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/egrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/egrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/egrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ehookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ehookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ehookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ehookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/eight.den.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/eight.den.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/eight.den.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/eight.den.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/eight.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/eight.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/eight.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/eight.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/eight.inf.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/eight.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/eight.inf.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/eight.inf.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/eight.num.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/eight.num.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/eight.num.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/eight.num.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/eight.sup.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/eight.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/eight.sup.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/eight.sup.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ellipsis.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ellipsis.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ellipsis.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ellipsis.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/emacron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/emacron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/emacron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/emacron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/emdash.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/emdash.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/emdash.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/emdash.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/endash.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/endash.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/endash.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/endash.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/eng.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/eng.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/eng.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/eng.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/eogonek.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/eogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/eogonek.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/eogonek.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.end.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.end.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.end.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.end.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.middle.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.middle.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.middle.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.start.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.start.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.start.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_asciitilde.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_asciitilde.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar.end.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar.end.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar.end.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar.end.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar.end.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar.end.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar.end.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar.end.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_equal.middle.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_equal.middle.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_equal.middle.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_colon_equal.middle.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_colon_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_colon_equal.middle.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_colon_equal.middle.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_equal.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_equal.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_equal.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_equal_equal.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_equal_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_equal_equal.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_equal_equal.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_exclam_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_exclam_equal.middle.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_exclam_equal.middle.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater.end.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater.end.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater.end.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater.end.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_equal.middle.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_equal.middle.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_equal.middle.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater.end.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater.end.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater.end.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater.end.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less.end.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less.end.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less.end.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less.end.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_equal.middle.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_equal.middle.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_equal.middle.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less.end.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less.end.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less.end.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less.end.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less_equal.middle.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less_equal.middle.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash.end.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash.end.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash.end.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash.end.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_equal.middle.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_equal.middle.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_equal.middle.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash.end.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash.end.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash.end.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash.end.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/eth.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/eth.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/eth.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/eth.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/etilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/etilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/etilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/etilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_asciitilde.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_equal.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_equal.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_equal.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_equal_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_equal_equal.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_equal_equal.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_exclam.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_exclam.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_exclam.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_exclam.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_exclam_period.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_exclam_period.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_exclam_period.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclamdown.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclamdown.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclamdown.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclamdown.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/f.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/f.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/f.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/f.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/five.den.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/five.den.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/five.den.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/five.den.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/five.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/five.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/five.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/five.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/five.inf.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/five.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/five.inf.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/five.inf.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/five.num.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/five.num.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/five.num.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/five.num.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/five.sup.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/five.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/five.sup.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/five.sup.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/fiveeighths.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/fiveeighths.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/fiveeighths.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/fiveeighths.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/fivesixths.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/fivesixths.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/fivesixths.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/fivesixths.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/four.den.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/four.den.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/four.den.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/four.den.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/four.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/four.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/four.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/four.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/four.inf.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/four.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/four.inf.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/four.inf.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/four.num.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/four.num.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/four.num.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/four.num.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/four.sup.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/four.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/four.sup.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/four.sup.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/fourfifths.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/fourfifths.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/fourfifths.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/fourfifths.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/fracbar.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/fracbar.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/fracbar.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/fracbar.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/fraction.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/fraction.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/fraction.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/fraction.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/fullblock.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/fullblock.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/fullblock.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/fullblock.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/g.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/g.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/g.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/g.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/gbreve.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/gbreve.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/gbreve.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/gbreve.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/gcaron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/gcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/gcaron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/gcaron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/gcircumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/gcircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/gcircumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/gcircumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/gcommaaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/gcommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/gcommaaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/gcommaaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/gdotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/gdotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/gdotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/gdotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/germandbls.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/germandbls.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/germandbls.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/germandbls.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/gmacron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/gmacron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/gmacron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/gmacron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/grave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/grave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/grave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/grave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/gravecmb.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/gravecmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/gravecmb.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/gravecmb.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/gravecmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/gravecmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/gravecmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/gravecmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_colon.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_colon.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_colon.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.start.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.start.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.start.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_equal.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_equal.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_equal.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_equal.start.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_equal.start.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_equal.start.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_hyphen.start.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen.start.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen.start.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greaterequal.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greaterequal.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greaterequal.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/greaterequal.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/guillemetleft.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/guillemetleft.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/guillemetleft.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/guillemetleft.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/guillemetright.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/guillemetright.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/guillemetright.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/guillemetright.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/guilsinglleft.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/guilsinglleft.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/guilsinglleft.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/guilsinglleft.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/guilsinglright.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/guilsinglright.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/guilsinglright.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/guilsinglright.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/h.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/h.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/h.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/h.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hbar.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hbar.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hbar.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hbar.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hbrevebelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hbrevebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hbrevebelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hbrevebelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hcedilla.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hcedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hcedilla.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hcedilla.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hcircumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hcircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hcircumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hcircumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hdotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hdotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hdotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydbldashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydbldashhorzbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydbldashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydbldashvertbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydbldashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydbldashvertbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydbldashvertbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnhorzbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnhorzbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnhorzbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnleftbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnleftbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnleftbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnrightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnrightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnrightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyhorzbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyhorzbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyhorzbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyleftbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyleftbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyleftbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyleftlightrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyleftlightrightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyleftlightrightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyquaddashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyquaddashvertbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyquaddashvertbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyrightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyrightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyrightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavytrpldashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavytrpldashvertbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavytrpldashvertbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyupbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyupbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyupbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyupbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuphorzbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuphorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuphorzbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuphorzbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyupleftbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyupleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyupleftbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyupleftbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuplightdnbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuplightdnbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuplightdnbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuplightdnbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuprightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuprightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuprightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuprightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyverthorzbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyverthorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyverthorzbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyverthorzbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertleftbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertleftbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertleftbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertrightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertrightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertrightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hlinebelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hlinebelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hlinebelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hookcmb.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hookcmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hookcmb.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hookcmb.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hookcmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hookcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hookcmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hookcmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/horizontalbar.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/horizontalbar.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/horizontalbar.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/horizontalbar.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hungarumlaut.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hungarumlaut.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hungarumlaut.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hungarumlaut.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hungarumlautcmb.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hungarumlautcmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hungarumlautcmb.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hungarumlautcmb.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hungarumlautcmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hungarumlautcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hungarumlautcmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hungarumlautcmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.end.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.end.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.end.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.end.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.middle.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.middle.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.start.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.start.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.start.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar.end.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar.end.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar.end.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar.end.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar.end.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar.end.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar.end.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater.end.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater.end.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater.end.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater.end.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater.end.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater.end.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater.end.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_hyphen.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less.end.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less.end.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less.end.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less.end.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less.end.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less.end.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less.end.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less.end.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/i.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/i.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/i.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/i.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/iacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/iacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/iacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/iacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ibreve.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ibreve.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ibreve.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ibreve.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/icaron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/icaron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/icaron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/icaron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/icircumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/icircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/icircumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/icircumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/idieresis.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/idieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/idieresis.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/idieresis.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/idotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/idotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/idotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/idotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/idotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/idotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/idotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/idotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/igrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/igrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/igrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/igrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ihookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ihookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ihookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ihookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/imacron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/imacron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/imacron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/imacron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/iogonek.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/iogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/iogonek.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/iogonek.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/itilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/itilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/itilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/itilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/j.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/j.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/j.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/j.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/jcaron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/jcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/jcaron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/jcaron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/jcircumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/jcircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/jcircumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/jcircumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/k.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/k.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/k.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/k.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/kcommaaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/kcommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/kcommaaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/kcommaaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/kdotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/kdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/kdotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/kdotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/klinebelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/klinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/klinebelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/klinebelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/l.dot.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/l.dot.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/l.dot.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/l.dot.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/l.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/l.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/l.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/l.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/layerinfo.plist b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/layerinfo.plist similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/layerinfo.plist rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/layerinfo.plist diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lcaron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lcaron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lcaron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lcircumflexbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lcircumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lcircumflexbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lcircumflexbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lcommaaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lcommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lcommaaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lcommaaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ldotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ldotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ldotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ldotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lefteighthblock.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lefteighthblock.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lefteighthblock.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lefteighthblock.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftfiveeighthsblock.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftfiveeighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftfiveeighthsblock.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftfiveeighthsblock.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lefthalfblock.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lefthalfblock.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lefthalfblock.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lefthalfblock.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightupheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightupheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightupheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftquarterblock.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftquarterblock.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftquarterblock.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftquarterblock.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftseveneighthsblock.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftseveneighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftseveneighthsblock.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftseveneighthsblock.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftthreeeighthsblock.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftthreeeighthsblock.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftthreeeighthsblock.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftthreeeighthsblock.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftthreequartersblock.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftthreequartersblock.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftthreequartersblock.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftthreequartersblock.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asterisk.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asterisk.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asterisk.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asterisk.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asterisk_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asterisk_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asterisk_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_bar.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_bar.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_colon.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_colon.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_colon.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar.ligabar.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar.ligabar.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar.ligabar.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar.ligabar.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.start.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.start.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.start.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal_less.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal_less.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal_less.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen.start.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen.start.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen_less.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen_less.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen_less.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_equal.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_equal.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_equal.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_equal.start.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_equal.start.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_equal.start.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_hyphen.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_hyphen.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_hyphen.start.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_hyphen.start.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_hyphen.start.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_hyphen.start.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_less.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_less.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_less.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_plus.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_plus.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_plus.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_plus.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_plus_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_plus_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_plus_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_plus_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_slash.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_slash.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_slash.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_slash_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_slash_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_slash_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_slash_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lessequal.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lessequal.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lessequal.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lessequal.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcdnleftbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcdnleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcdnleftbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcdnleftbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcdnrightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcdnrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcdnrightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcdnrightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcupleftbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcupleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcupleftbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcupleftbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcuprightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcuprightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcuprightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcuprightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdbldashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdbldashhorzbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdbldashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdbldashvertbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdbldashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdbldashvertbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdbldashvertbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiagcrossbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiagcrossbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiagcrossbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiagcrossbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnhorzbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnhorzbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnhorzbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnleftbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnleftbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnleftbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnrightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnrightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnrightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighthorzbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighthorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighthorzbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighthorzbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightleftbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightleftbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightleftbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightleftheavyrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightleftheavyrightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightleftheavyrightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightquaddashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightquaddashhorzbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightquaddashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightquaddashvertbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightquaddashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightquaddashvertbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightquaddashvertbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightrightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightrightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightrightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightshade.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightshade.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightshade.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightshade.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighttrpldashvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighttrpldashvertbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighttrpldashvertbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupheavydnbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupheavydnbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupheavydnbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupheavydnbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightuphorzbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightuphorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightuphorzbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightuphorzbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupleftbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupleftbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupleftbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightuprightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightuprightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightuprightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightuprightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightverthorzbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightverthorzbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightverthorzbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightverthorzbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertleftbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertleftbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertleftbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertleftbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertrightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertrightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertrightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertrightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ligspacer.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ligspacer.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ligspacer.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ligspacer.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/llinebelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/llinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/llinebelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/llinebelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lmacrondotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lmacrondotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lmacrondotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lmacrondotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lslash.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lslash.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lslash.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/lslash.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/m.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/m.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/m.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/m.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/macron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/macron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/macron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/macron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/macronbelowcmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/macronbelowcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/macronbelowcmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/macronbelowcmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/macroncmb.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/macroncmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/macroncmb.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/macroncmb.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/macroncmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/macroncmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/macroncmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/macroncmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/macronlowmod.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/macronlowmod.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/macronlowmod.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/macronlowmod.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/macute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/macute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/macute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/macute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/mdotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/mdotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/mdotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/mdotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/mdotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/mdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/mdotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/mdotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/mediumshade.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/mediumshade.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/mediumshade.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/mediumshade.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/middotcat.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/middotcat.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/middotcat.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/middotcat.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/middotcat.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/middotcat.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/middotcat.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/middotcat.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/minus.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/minus.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/minus.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/minus.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/mu.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/mu.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/mu.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/mu.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/multiply.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/multiply.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/multiply.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/multiply.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/n.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/n.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/n.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/n.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/nacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/nacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/nacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/nacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/naira.bar.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/naira.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/naira.bar.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/naira.bar.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/naira.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/naira.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/naira.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/naira.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ncaron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ncaron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ncaron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ncaron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ncircumflexbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ncircumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ncircumflexbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ncircumflexbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ncommaaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ncommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ncommaaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ncommaaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ndotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ndotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ndotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ndotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ndotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ndotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ndotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ndotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ngrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ngrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ngrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ngrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/nine.den.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/nine.den.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/nine.den.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/nine.den.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/nine.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/nine.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/nine.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/nine.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/nine.inf.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/nine.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/nine.inf.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/nine.inf.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/nine.num.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/nine.num.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/nine.num.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/nine.num.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/nine.sup.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/nine.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/nine.sup.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/nine.sup.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/nlinebelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/nlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/nlinebelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/nlinebelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/notequal.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/notequal.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/notequal.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/notequal.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ntilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ntilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ntilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ntilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.end.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.end.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.end.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.end.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.middle.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.middle.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.middle.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.start.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.start.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.start.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.start.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_braceleft.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_braceleft.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_braceleft.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_colon.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_colon.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_colon.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_equal.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_equal.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_equal.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_exclam.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_exclam.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_exclam.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_exclam.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_parenleft.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_parenleft.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_parenleft.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_question.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_question.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_question.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_question.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_underscore.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_underscore.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_underscore.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_underscore.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/o.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/o.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/o.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/o.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/oacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/oacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/oacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/oacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/obreve.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/obreve.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/obreve.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/obreve.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocaron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocaron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocaron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocaron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflexacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflexacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflexacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflexacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflexdotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflexdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflexdotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflexdotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflexgrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflexgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflexgrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflexgrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflexhookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflexhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflexhookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflexhookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflextilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflextilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflextilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ocircumflextilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/odieresis.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/odieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/odieresis.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/odieresis.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/odotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/odotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/odotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/odotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/odotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/odotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/odotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/odotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/oe.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/oe.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/oe.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/oe.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ogonek.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ogonek.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ogonek.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ogonekcmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ogonekcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ogonekcmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ogonekcmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ograve.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ograve.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ograve.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ograve.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohorn.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohorn.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohorn.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohorn.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohornacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohornacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohornacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohornacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohorndotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohorndotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohorndotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohorndotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohorngrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohorngrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohorngrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohorngrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohornhookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohornhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohornhookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohornhookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohorntilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohorntilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohorntilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohorntilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohungarumlaut.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohungarumlaut.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohungarumlaut.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ohungarumlaut.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/omacron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/omacron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/omacron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/omacron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/one.den.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/one.den.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/one.den.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/one.den.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/one.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/one.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/one.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/one.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/one.inf.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/one.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/one.inf.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/one.inf.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/one.num.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/one.num.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/one.num.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/one.num.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/one.sup.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/one.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/one.sup.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/one.sup.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/oneeighth.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/oneeighth.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/oneeighth.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/oneeighth.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/onefifth.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/onefifth.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/onefifth.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/onefifth.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/onehalf.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/onehalf.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/onehalf.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/onehalf.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/onequarter.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/onequarter.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/onequarter.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/onequarter.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/onesixth.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/onesixth.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/onesixth.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/onesixth.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/onethird.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/onethird.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/onethird.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/onethird.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/oogonek.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/oogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/oogonek.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/oogonek.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ordfeminine.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ordfeminine.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ordfeminine.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ordfeminine.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ordmasculine.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ordmasculine.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ordmasculine.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ordmasculine.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/oslash.bar.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/oslash.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/oslash.bar.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/oslash.bar.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/oslash.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/oslash.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/oslash.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/oslash.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/otilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/otilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/otilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/otilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/p.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/p.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/p.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/p.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/paragraph.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/paragraph.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/paragraph.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/paragraph.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/parenleft.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/parenleft.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/parenleft.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/parenleft.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/parenright.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/parenright.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/parenright.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/parenright.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/percent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/percent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/percent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/percent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/percent_percent.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/percent_percent.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/percent_percent.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/percent_percent.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/period.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/period.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_equal.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_equal.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_equal.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_hyphen.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_hyphen.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_hyphen.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_hyphen.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_equal.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_equal.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_equal.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_less.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_less.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_less.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_less.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_period.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_period.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_period.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_period.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_question.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_question.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_question.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_question.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/periodcentered.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/periodcentered.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/periodcentered.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/periodcentered.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/peso.bar.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/peso.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/peso.bar.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/peso.bar.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/peso.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/peso.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/peso.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/peso.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_plus.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_plus.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_plus.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_plus.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_plus_plus.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_plus_plus.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_plus_plus.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_plus_plus.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/plusminus.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/plusminus.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/plusminus.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/plusminus.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/primemod.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/primemod.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/primemod.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/primemod.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/published.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/published.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/published.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/published.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/q.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/q.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/q.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/q.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/question.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/question.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_colon.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_colon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_colon.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_colon.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_equal.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_equal.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_equal.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_period.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_period.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_period.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_period.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_question.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_question.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_question.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_question.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/questiondown.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/questiondown.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/questiondown.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/questiondown.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotedbl.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotedbl.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotedbl.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotedbl.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotedblbase.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotedblbase.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotedblbase.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotedblbase.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotedblleft.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotedblleft.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotedblleft.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotedblleft.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotedblright.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotedblright.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotedblright.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotedblright.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/quoteleft.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/quoteleft.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/quoteleft.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/quoteleft.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/quoteright.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/quoteright.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/quoteright.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/quoteright.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotesinglbase.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotesinglbase.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotesinglbase.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotesinglbase.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotesingle.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotesingle.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotesingle.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/quotesingle.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/r.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/r.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/r.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/r.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/racute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/racute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/racute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/racute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rcaron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rcaron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rcaron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rcommaaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rcommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rcommaaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rcommaaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rdotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rdotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rdotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rdotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rdotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rdotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rdotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/registered.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/registered.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/registered.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/registered.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/righteighthblock.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/righteighthblock.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/righteighthblock.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/righteighthblock.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/righthalfblock.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/righthalfblock.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/righthalfblock.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/righthalfblock.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftupheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftupheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftupheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ring.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ring.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ring.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ring.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ringcmb.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ringcmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ringcmb.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ringcmb.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ringcmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ringcmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ringcmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ringcmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ringhalfleft.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ringhalfleft.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ringhalfleft.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ringhalfleft.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ringhalfright.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ringhalfright.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ringhalfright.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ringhalfright.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rlinebelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rlinebelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rlinebelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rmacrondotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rmacrondotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rmacrondotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/rmacrondotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/s.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/s.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/s.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/s.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/sacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/sacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/sacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/sacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/scaron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/scaron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/scaron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/scaron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/scedilla.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/scedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/scedilla.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/scedilla.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/schwa.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/schwa.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/schwa.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/schwa.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/scircumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/scircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/scircumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/scircumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/scommaaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/scommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/scommaaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/scommaaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/sdotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/sdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/sdotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/sdotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/section.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/section.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/section.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/section.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/semicolon.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/semicolon.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/semicolon.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/semicolon.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/semicolon_semicolon.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/semicolon_semicolon.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/semicolon_semicolon.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/servicemark.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/servicemark.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/servicemark.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/servicemark.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/seven.den.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/seven.den.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/seven.den.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/seven.den.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/seven.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/seven.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/seven.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/seven.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/seven.inf.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/seven.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/seven.inf.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/seven.inf.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/seven.num.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/seven.num.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/seven.num.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/seven.num.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/seven.sup.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/seven.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/seven.sup.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/seven.sup.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/seveneighths.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/seveneighths.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/seveneighths.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/seveneighths.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/six.den.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/six.den.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/six.den.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/six.den.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/six.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/six.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/six.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/six.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/six.inf.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/six.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/six.inf.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/six.inf.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/six.num.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/six.num.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/six.num.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/six.num.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/six.sup.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/six.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/six.sup.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/six.sup.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_asterisk.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_asterisk.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_asterisk.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_asterisk.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_backslash.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_backslash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_backslash.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_backslash.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_equal.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_equal.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_equal.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_equal.start.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_equal.start.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_equal.start.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_greater.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_greater.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_greater.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_greater.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_equal.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_equal.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_equal.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_equal.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_equal.start.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_equal.start.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_equal.start.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_equal.start.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_slash.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_slash.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_slash.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_slash.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/space.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/space.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/space.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/space.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/sterling.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/sterling.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/sterling.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/sterling.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/t.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/t.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/t.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/t.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/tbar.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/tbar.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/tbar.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/tbar.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/tcaron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/tcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/tcaron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/tcaron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/tcedilla.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/tcedilla.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/tcedilla.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/tcedilla.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/tcircumflexbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/tcircumflexbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/tcircumflexbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/tcircumflexbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/tcommaaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/tcommaaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/tcommaaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/tcommaaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/tdotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/tdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/tdotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/tdotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/thorn.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/thorn.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/thorn.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/thorn.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/three.den.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/three.den.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/three.den.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/three.den.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/three.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/three.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/three.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/three.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/three.inf.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/three.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/three.inf.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/three.inf.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/three.num.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/three.num.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/three.num.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/three.num.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/three.sup.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/three.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/three.sup.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/three.sup.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/threeeighths.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/threeeighths.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/threeeighths.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/threeeighths.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/threefifths.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/threefifths.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/threefifths.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/threefifths.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/threequarters.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/threequarters.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/threequarters.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/threequarters.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/tilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/tilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/tilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/tilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/tildecmb.cap.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/tildecmb.cap.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/tildecmb.cap.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/tildecmb.cap.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/tildecmb.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/tildecmb.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/tildecmb.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/tildecmb.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/tlinebelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/tlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/tlinebelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/tlinebelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/trademark.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/trademark.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/trademark.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/trademark.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/two.den.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/two.den.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/two.den.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/two.den.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/two.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/two.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/two.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/two.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/two.inf.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/two.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/two.inf.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/two.inf.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/two.num.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/two.num.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/two.num.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/two.num.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/two.sup.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/two.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/two.sup.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/two.sup.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/twodotleader.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/twodotleader.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/twodotleader.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/twodotleader.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/twofifths.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/twofifths.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/twofifths.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/twofifths.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/twothirds.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/twothirds.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/twothirds.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/twothirds.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/u.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/u.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/u.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/u.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ubreve.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ubreve.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ubreve.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ubreve.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ucaron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ucaron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ucaron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ucaron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ucircumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ucircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ucircumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ucircumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/udieresis.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/udieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/udieresis.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/udieresis.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/udieresisacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/udieresisacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/udieresisacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/udieresisacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/udieresiscaron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/udieresiscaron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/udieresiscaron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/udieresiscaron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/udieresisgrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/udieresisgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/udieresisgrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/udieresisgrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/udieresismacron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/udieresismacron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/udieresismacron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/udieresismacron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/udotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/udotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/udotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/udotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ugrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ugrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ugrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ugrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhorn.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhorn.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhorn.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhorn.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhornacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhornacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhornacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhornacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhorndotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhorndotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhorndotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhorndotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhorngrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhorngrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhorngrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhorngrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhornhookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhornhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhornhookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhornhookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhorntilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhorntilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhorntilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhorntilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhungarumlaut.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhungarumlaut.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhungarumlaut.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uhungarumlaut.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/umacron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/umacron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/umacron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/umacron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.end.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.end.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.end.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.end.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.middle.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.middle.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.middle.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.middle.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.start.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.start.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.start.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.start.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore_bar_underscore.m.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore_bar_underscore.m.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore_bar_underscore.m.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni00A_0.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni00A_0.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni00A_0.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni00A_0.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni0326.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni0326.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni0326.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni0326.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni1E_9E_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni1E_9E_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni1E_9E_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni1E_9E_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2011.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2011.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2011.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2011.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni20B_9.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni20B_9.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni20B_9.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni20B_9.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni20B_A_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni20B_A_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni20B_A_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni20B_A_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni20B_D_.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni20B_D_.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni20B_D_.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni20B_D_.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2610.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2610.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2610.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2610.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2611.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2611.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2611.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2611.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2612.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2612.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2612.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2612.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2713.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2713.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2713.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2713.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniA_788.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniA_788.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniA_788.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniA_788.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_0.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_0.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_0.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_0.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_1.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_1.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_1.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_1.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_2.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_2.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_2.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_2.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_0.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_0.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_0.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_0.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_1.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_1.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_1.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_1.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_2.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_2.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_2.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_2.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_3.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_3.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_3.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_3.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uogonek.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uogonek.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uogonek.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uogonek.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblhorzsngbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblhorzsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblhorzsngbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblhorzsngbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblleftsngbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblleftsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblleftsngbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblleftsngbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblrightsngbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblrightsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblrightsngbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblrightsngbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upeighthblock.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upeighthblock.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upeighthblock.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upeighthblock.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uphalfblock.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uphalfblock.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uphalfblock.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uphalfblock.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyhorzlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyhorzlightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyhorzlightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyleftlightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyleftlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyleftlightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyleftlightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyrightlightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyrightlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyrightlightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyrightlightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftdnrightquadrant.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftdnrightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftdnrightquadrant.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftdnrightquadrant.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftquadrant.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftquadrant.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftquadrant.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplighthorzheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplighthorzheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplighthorzheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplighthorzheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightleftdnheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightleftdnheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightleftdnheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightleftheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightleftheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightleftheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightleftheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightrightdnheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightrightdnheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightrightdnheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightrightheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightrightheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightrightheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightrightheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightdnleftquadrant.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightdnleftquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightdnleftquadrant.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightdnleftquadrant.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightquadrant.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightquadrant.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightquadrant.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightquadrant.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsnghorzdblbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsnghorzdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsnghorzdblbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsnghorzdblbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsngleftdblbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsngleftdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsngleftdblbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsngleftdblbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsngrightdblbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsngrightdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsngrightdblbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsngrightdblbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uring.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uring.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uring.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/uring.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/utilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/utilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/utilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/utilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/v.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/v.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/v.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/v.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vdotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vdotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vdotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblhorzsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblhorzsngbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblhorzsngbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblleftsngbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblleftsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblleftsngbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblleftsngbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblrightsngbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblrightsngbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblrightsngbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblrightsngbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyleftlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyleftlightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyleftlightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyrightlightbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyrightlightbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyrightlightbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/verticallinelowmod.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/verticallinelowmod.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/verticallinelowmod.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/verticallinelowmod.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/verticallinemod.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/verticallinemod.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/verticallinemod.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/verticallinemod.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlighthorzheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlighthorzheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlighthorzheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlightleftheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlightleftheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlightleftheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlightleftheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlightrightheavybxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlightrightheavybxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlightrightheavybxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlightrightheavybxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsnghorzdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsnghorzdblbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsnghorzdblbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsngleftdblbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsngleftdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsngleftdblbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsngleftdblbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsngrightdblbxd.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsngrightdblbxd.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsngrightdblbxd.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsngrightdblbxd.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/w.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/w.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/w.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/w.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/w_w_w.liga.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/w_w_w.liga.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/w_w_w.liga.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/w_w_w.liga.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/wacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/wacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/wacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/wacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/wcircumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/wcircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/wcircumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/wcircumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/wdieresis.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/wdieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/wdieresis.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/wdieresis.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/wgrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/wgrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/wgrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/wgrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/won.bar.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/won.bar.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/won.bar.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/won.bar.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/won.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/won.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/won.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/won.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/x.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/x.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/x.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/x.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/xdieresis.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/xdieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/xdieresis.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/xdieresis.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/y.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/y.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/y.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/y.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/yacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/yacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/yacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/yacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ycircumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ycircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ycircumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ycircumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ydieresis.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ydieresis.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ydieresis.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ydieresis.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ydotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ydotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ydotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ydotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ydotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ydotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ydotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ydotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/yen.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/yen.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/yen.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/yen.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ygrave.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ygrave.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ygrave.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ygrave.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/yhookabove.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/yhookabove.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/yhookabove.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/yhookabove.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ymacron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ymacron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ymacron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ymacron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ytilde.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ytilde.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ytilde.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/ytilde.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/z.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/z.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/z.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/z.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zacute.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zacute.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zacute.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zacute.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zcaron.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zcaron.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zcaron.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zcaron.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zcircumflex.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zcircumflex.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zcircumflex.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zcircumflex.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zdotaccent.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zdotaccent.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zdotaccent.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zdotaccent.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zdotbelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zdotbelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zdotbelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zdotbelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zero.den.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zero.den.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zero.den.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zero.den.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zero.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zero.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zero.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zero.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zero.inf.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zero.inf.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zero.inf.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zero.inf.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zero.num.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zero.num.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zero.num.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zero.num.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zero.sup.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zero.sup.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zero.sup.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zero.sup.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zlinebelow.glif b/sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zlinebelow.glif similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/zlinebelow.glif rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/glyphs/zlinebelow.glif diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/layercontents.plist b/sources/main/IntelOneMono-LightItalic-mstr.ufo/layercontents.plist similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/layercontents.plist rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/layercontents.plist diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/lib.plist b/sources/main/IntelOneMono-LightItalic-mstr.ufo/lib.plist similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/lib.plist rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/lib.plist diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/metainfo.plist b/sources/main/IntelOneMono-LightItalic-mstr.ufo/metainfo.plist similarity index 100% rename from sources/masters/IntelOneMono-LightItalic-mstr.ufo/metainfo.plist rename to sources/main/IntelOneMono-LightItalic-mstr.ufo/metainfo.plist diff --git a/sources/masters/IntelOneMono-Roman.designspace b/sources/main/IntelOneMono-Roman.designspace similarity index 100% rename from sources/masters/IntelOneMono-Roman.designspace rename to sources/main/IntelOneMono-Roman.designspace